/Zephyr-latest/subsys/llext/ |
D | llext.c | 26 int llext_get_section_header(struct llext_loader *ldr, struct llext *ext, const char *search_name, in llext_get_section_header() 92 struct llext *ext = CONTAINER_OF(node, struct llext, _llext_list); in llext_by_name() local 104 int llext_iterate(int (*fn)(struct llext *ext, void *arg), void *arg) in llext_iterate() 114 struct llext *ext = CONTAINER_OF(node, struct llext, _llext_list); in llext_iterate() local 163 int llext_load(struct llext_loader *ldr, const char *name, struct llext **ext, in llext_load() 252 int llext_unload(struct llext **ext) in llext_unload() 290 int llext_call_fn(struct llext *ext, const char *sym_name) in llext_call_fn() 303 static int call_fn_table(struct llext *ext, bool is_init) in call_fn_table() 333 inline int llext_bringup(struct llext *ext) in llext_bringup() 338 inline int llext_teardown(struct llext *ext) in llext_teardown() [all …]
|
D | llext_mem.c | 33 static void llext_init_mem_part(struct llext *ext, enum llext_mem mem_idx, in llext_init_mem_part() 61 static int llext_copy_section(struct llext_loader *ldr, struct llext *ext, in llext_copy_section() 146 int llext_copy_strings(struct llext_loader *ldr, struct llext *ext) in llext_copy_strings() 157 int llext_copy_regions(struct llext_loader *ldr, struct llext *ext, in llext_copy_regions() 176 void llext_adjust_mmu_permissions(struct llext *ext) in llext_adjust_mmu_permissions() 210 void llext_free_regions(struct llext *ext) in llext_free_regions() 229 int llext_add_domain(struct llext *ext, struct k_mem_domain *domain) in llext_add_domain()
|
D | llext_handlers.c | 18 ssize_t z_impl_llext_get_fn_table(struct llext *ext, bool is_init, void *buf, size_t buf_size) in z_impl_llext_get_fn_table() 76 static int ext_is_valid(struct llext *ext, void *arg) in ext_is_valid() 81 static inline ssize_t z_vrfy_llext_get_fn_table(struct llext *ext, bool is_init, in z_vrfy_llext_get_fn_table()
|
D | llext_link.c | 35 __weak void arch_elf_relocate_local(struct llext_loader *ldr, struct llext *ext, in arch_elf_relocate_local() 41 __weak void arch_elf_relocate_global(struct llext_loader *ldr, struct llext *ext, in arch_elf_relocate_global() 78 static int llext_dependency_add(struct llext *ext, struct llext *dependency) in llext_dependency_add() 98 void llext_dependency_remove_all(struct llext *ext) in llext_dependency_remove_all() 114 struct llext *ext; member 119 static int llext_find_extension_sym_iterate(struct llext *ext, void *arg) in llext_find_extension_sym_iterate() 133 static const void *llext_find_extension_sym(const char *sym_name, struct llext **ext) in llext_find_extension_sym() 145 static void llext_link_plt(struct llext_loader *ldr, struct llext *ext, elf_shdr_t *shdr, in llext_link_plt() 272 int llext_link(struct llext_loader *ldr, struct llext *ext, const struct llext_load_param *ldr_parm) in llext_link()
|
D | llext_load.c | 42 const void *llext_loaded_sect_ptr(struct llext_loader *ldr, struct llext *ext, unsigned int sh_ndx) in llext_loaded_sect_ptr() 57 static int llext_load_elf_data(struct llext_loader *ldr, struct llext *ext) in llext_load_elf_data() 152 static int llext_find_tables(struct llext_loader *ldr, struct llext *ext) in llext_find_tables() 213 static int llext_map_sections(struct llext_loader *ldr, struct llext *ext, in llext_map_sections() 452 static int llext_count_export_syms(struct llext_loader *ldr, struct llext *ext) in llext_count_export_syms() 502 static int llext_allocate_symtab(struct llext_loader *ldr, struct llext *ext) in llext_allocate_symtab() 517 static int llext_export_symbols(struct llext_loader *ldr, struct llext *ext) in llext_export_symbols() 547 static int llext_copy_symbols(struct llext_loader *ldr, struct llext *ext, in llext_copy_symbols() 629 int do_llext_load(struct llext_loader *ldr, struct llext *ext, in do_llext_load()
|
D | shell.c | 66 struct llext *ext; member 69 static int llext_shell_name_cb(struct llext *ext, void *arg) in llext_shell_name_cb() 111 static int llext_shell_list_cb(struct llext *ext, void *arg) in llext_shell_list_cb() 152 struct llext *ext; in cmd_llext_load_hex() local 166 struct llext *ext = llext_by_name(argv[1]); in cmd_llext_unload() local 181 struct llext *ext = llext_by_name(argv[1]); in cmd_llext_call_fn() local 213 struct llext *ext; in cmd_llext_load_fs() local
|
D | llext_priv.h | 56 static inline const char *llext_string(struct llext_loader *ldr, struct llext *ext, in llext_string()
|
/Zephyr-latest/arch/xtensa/core/ |
D | elf.c | 35 static void xtensa_elf_relocate(struct llext_loader *ldr, struct llext *ext, in xtensa_elf_relocate() 131 void arch_elf_relocate_local(struct llext_loader *ldr, struct llext *ext, const elf_rela_t *rel, in arch_elf_relocate_local() 155 void arch_elf_relocate_global(struct llext_loader *ldr, struct llext *ext, const elf_rela_t *rel, in arch_elf_relocate_global()
|
/Zephyr-latest/samples/subsys/llext/edk/app/src/ |
D | main.c | 66 struct llext *ext; member 70 static const void * const load(const char *name, struct llext **ext, void *buf, in load() 86 static void unload(struct llext **ext) in unload() 126 struct llext **ext = &extension_threads[max_extension_thread_idx].ext; in run_extension_on_thread() local
|
/Zephyr-latest/samples/subsys/llext/modules/src/ |
D | main_module.c | 27 struct llext *ext; in main() local
|
/Zephyr-latest/tests/subsys/llext/src/ |
D | test_llext.c | 128 struct llext *ext = NULL; in load_call_unload() local 274 static void init_fini_test_cleanup(struct llext *ext) in init_fini_test_cleanup() 376 struct llext *ext = NULL; in ZTEST() local 412 struct llext *ext = NULL; in ZTEST() local 536 struct llext *ext = NULL; in ZTEST() local
|
/Zephyr-latest/subsys/sd/ |
D | mmc.c | 444 static int mmc_set_power_class_HS200(struct sd_card *card, struct mmc_ext_csd *ext) in mmc_set_power_class_HS200() 458 static int mmc_set_timing(struct sd_card *card, struct mmc_ext_csd *ext) in mmc_set_timing() 600 static inline void mmc_decode_ext_csd(struct mmc_ext_csd *ext, uint8_t *raw) in mmc_decode_ext_csd()
|
/Zephyr-latest/include/zephyr/llext/ |
D | llext.h | 131 static inline const elf_shdr_t *llext_section_headers(const struct llext *ext) in llext_section_headers() 136 static inline unsigned int llext_section_count(const struct llext *ext) in llext_section_count()
|
/Zephyr-latest/tests/boards/intel_adsp/hda/src/ |
D | tests.h | 32 uint32_t ext, k_timeout_t timeout) in hda_ipc_msg()
|
/Zephyr-latest/tests/misc/llext-edk/src/ |
D | main.c | 53 struct llext **ext) in load_and_run_extension()
|
/Zephyr-latest/include/zephyr/sys/ |
D | spsc_pbuf.h | 110 } ext; member
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | monitor.h | 58 uint8_t ext[BT_MONITOR_EXT_HDR_MAX]; member
|
/Zephyr-latest/soc/intel/intel_adsp/common/ |
D | ipc.c | 52 uint32_t ext = regs->tdd; in z_intel_adsp_ipc_isr() local
|
/Zephyr-latest/samples/drivers/jesd216/src/ |
D | main.c | 252 dw_extractor ext = extractor[dw]; in dump_bfp() local
|
/Zephyr-latest/subsys/net/lib/http/ |
D | http_server_core.c | 779 char *ext; in http_server_get_content_type_from_extension() local
|
/Zephyr-latest/subsys/usb/usb_c/ |
D | usbc_prl.c | 1174 uint8_t ext; in prl_rx_wait_for_phy_message() local
|
/Zephyr-latest/drivers/dai/intel/ssp/ |
D | ssp.c | 1936 struct ssp_intel_ext_ctl *ext; in dai_ssp_parse_tlv() local
|
/Zephyr-latest/subsys/net/lib/coap/ |
D | coap.c | 258 static uint8_t encode_extended_option(uint16_t num, uint8_t *opt, uint16_t *ext) in encode_extended_option()
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | access.c | 1744 const struct bt_mesh_model *ext, in mod_rel_register()
|
/Zephyr-latest/include/zephyr/drivers/can/ |
D | can_mcan.h | 1175 struct can_mcan_rx_callback *ext; member
|