Home
last modified time | relevance | path

Searched refs:st_info (Results 1 – 9 of 9) sorted by relevance

/Zephyr-latest/scripts/tests/build/
Dtest_subfolder_list.py86 st_info = os.stat(OUT_FILE)
91 assert st_info == st_info2
96 st_info = os.stat(OUT_FILE)
99 assert st_info != st_info2
119 st_info = os.stat(trigger_file)
124 assert (time_now - st_info.st_atime) <= time_since_touch
125 assert (time_now - st_info.st_mtime) <= time_since_touch
/Zephyr-latest/arch/xtensa/core/
Delf.c138 if (ELF_ST_TYPE(sym->st_info) == STT_SECTION) { in arch_elf_relocate_local()
149 xtensa_elf_relocate(ldr, ext, rel, sh_addr, rel_addr, type, ELF_ST_BIND(sym->st_info)); in arch_elf_relocate_local()
166 ELF_ST_BIND(sym->st_info)); in arch_elf_relocate_global()
/Zephyr-latest/scripts/profiling/
Dstackcollapse.py31 …if sym.entry.st_info.type == "STT_FUNC" and sym.entry.st_value <= addr < sym.entry.st_value + sym.…
/Zephyr-latest/subsys/llext/
Dllext_link.c197 uint32_t stt = ELF_ST_TYPE(sym.st_info); in llext_link_plt()
230 uint32_t stb = ELF_ST_BIND(sym.st_info); in llext_link_plt()
390 name, ELF_ST_TYPE(sym.st_info), in llext_link()
391 ELF_ST_BIND(sym.st_info), sym.st_shndx); in llext_link()
Dllext_load.c483 uint32_t stt = ELF_ST_TYPE(sym.st_info); in llext_count_export_syms()
484 uint32_t stb = ELF_ST_BIND(sym.st_info); in llext_count_export_syms()
576 uint32_t stt = ELF_ST_TYPE(sym.st_info); in llext_copy_symbols()
577 uint32_t stb = ELF_ST_BIND(sym.st_info); in llext_copy_symbols()
/Zephyr-latest/include/zephyr/llext/
Delf.h231 unsigned char st_info; member
245 unsigned char st_info; member
/Zephyr-latest/scripts/build/
Dcheck_init_priorities_test.py68 s0.entry.st_info.type = "STT_OBJECT"
78 s2.entry.st_info.type = "STT_FUNC"
Dcheck_init_priorities.py119 sym.entry.st_info.type in ["STT_OBJECT", "STT_FUNC"]):
Delf_parser.py183 if sym.entry.st_info.type != 'STT_OBJECT':