/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 | 446 #define SECTION_VAR(sect, sym) section_var sect, sym argument 447 #define SECTION_FUNC(sect, sym) section_func sect, sym argument 448 #define SECTION_SUBSEC_FUNC(sect, subsec, sym) \ argument 449 section_subsec_func sect, subsec, sym 452 #define SECTION_VAR(sect, sym) .section .sect.sym; sym: 453 #define SECTION_FUNC(sect, sym) \ 454 .section .sect.sym, "ax"; \ 458 #define SECTION_SUBSEC_FUNC(sect, subsec, sym) \ 459 .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/dts/arm/ti/ |
D | cc2340r5.dtsi | 42 ti,wr-er-prot-ccfg-sect = <0>; 43 ti,wr-er-prot-fcfg-sect = <0>; 44 ti,wr-er-prot-engr-sect = <0>;
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | api_overview.py | 95 for sect in ssects: 96 if sect.get_kind() == "since": 97 since = sect.get_para()[0].get_valueOf_() 98 elif sect.get_kind() == "version": 99 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/include/zephyr/toolchain/iar/ |
D | iccarm.h | 276 #define SECTION_VAR(sect, sym) argument 277 #define SECTION_FUNC(sect, sym) argument 278 #define SECTION_SUBSEC_FUNC(sect, subsec, sym) argument
|
/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 | 543 uint32_t sect = sym.st_shndx; in llext_count_export_syms() local 549 i, name, stt, stb, sect); in llext_count_export_syms() 553 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')
|