/Zephyr-latest/scripts/logging/dictionary/dictionary_parser/ |
D | log_database.py | 208 for _, sect in self.database['sections'].items(): 209 one_str = extract_one_string_in_section(sect, string_ptr) 273 for _, sect in json_db['sections'].items(): 274 sect['data'] = base64.b64decode(sect['data_b64']) 300 for _, sect in json_db['sections'].items(): 301 encoded = base64.b64encode(sect['data']) 302 sect['data_b64'] = encoded.decode('ascii') 303 del sect['data']
|
/Zephyr-latest/include/zephyr/toolchain/ |
D | mwdt.h | 63 #define SECTION_VAR(sect, sym) section_var_mwdt sect, sym argument 64 #define SECTION_FUNC(sect, sym) section_func_mwdt sect, sym argument 65 #define SECTION_SUBSEC_FUNC(sect, subsec, sym) \ argument 66 section_subsec_func_mwdt sect, subsec, sym
|
D | gcc.h | 442 #define SECTION_VAR(sect, sym) section_var sect, sym argument 443 #define SECTION_FUNC(sect, sym) section_func sect, sym argument 444 #define SECTION_SUBSEC_FUNC(sect, subsec, sym) \ argument 445 section_subsec_func sect, subsec, sym 448 #define SECTION_VAR(sect, sym) .section .sect.sym; sym: 449 #define SECTION_FUNC(sect, sym) \ 450 .section .sect.sym, "ax"; \ 454 #define SECTION_SUBSEC_FUNC(sect, subsec, sym) \ 455 .section .sect.subsec, "ax"; PERFOPT_ALIGN; sym :
|
/Zephyr-latest/scripts/logging/dictionary/ |
D | database_gen.py | 106 for sect in elf.iter_sections(): 111 if (((wildcards is not None) and (sect.name in wildcards)) or 112 ((sect['sh_flags'] & SH_FLAGS.SHF_ALLOC) == SH_FLAGS.SHF_ALLOC 113 and sect['sh_type'] == 'SHT_PROGBITS') 115 sections[sect.name] = { 116 'name' : sect.name, 117 'size' : sect['sh_size'], 118 'start' : sect['sh_addr'], 119 'end' : sect['sh_addr'] + sect['sh_size'] - 1, 120 'data' : sect.data(), [all …]
|
/Zephyr-latest/scripts/native_simulator/common/src/include/ |
D | nsi_cpu_if.h | 21 #define NATIVE_SIMULATOR_IF_SECT(sect) __attribute__((visibility("default"))) \ argument 22 __attribute__((__section__(sect)))
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | api_overview.py | 51 for sect in ssects: 52 if sect.get_kind() == "since": 53 since = sect.get_para()[0].get_valueOf_() 54 elif sect.get_kind() == "version": 55 version = sect.get_para()[0].get_valueOf_()
|
/Zephyr-latest/include/zephyr/ |
D | sw_isr_table.h | 203 #define _Z_ISR_TABLE_ENTRY(irq, func, param, sect) \ argument 205 __attribute__((section(sect))) \ 233 #define _Z_ISR_DIRECT_TABLE_ENTRY(irq, func, sect) \ argument 236 __attribute__((section(sect))) \ 239 static void __attribute__((section(sect))) __attribute__((naked)) \
|
/Zephyr-latest/scripts/build/ |
D | gen_isr_tables_parser_local.py | 243 sect = self.__isr_generated_section(irq) 251 sect = self.__isr_generated_section(irq) 258 sect = self.__irq_spurious_section(irq)
|
/Zephyr-latest/subsys/llext/ |
D | llext_load.c | 485 uint32_t sect = sym.st_shndx; in llext_count_export_syms() local 491 i, name, stt, stb, sect); in llext_count_export_syms() 495 i, name, stt, stb, sect); in llext_count_export_syms()
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | core.py | 62 for sect in elffile.iter_sections('SHT_SYMTAB'): 63 symbols = sect.get_symbol_by_name('_SEGGER_RTT')
|