Lines Matching refs:tmp
29 const elf_shdr_t *tmp; in llext_get_section_header() local
32 for (i = 0, tmp = ext->sect_hdrs; in llext_get_section_header()
34 i++, tmp++) { in llext_get_section_header()
37 tmp->sh_name); in llext_get_section_header()
44 *shdr = *tmp; in llext_get_section_header()
255 struct llext *tmp = *ext; in llext_unload() local
261 __ASSERT(tmp->use_count, "A valid LLEXT cannot have a zero use-count!"); in llext_unload()
263 if (tmp->use_count-- != 1) { in llext_unload()
264 unsigned int ret = tmp->use_count; in llext_unload()
271 sys_slist_find_and_remove(&_llext_list, &tmp->_llext_list); in llext_unload()
273 llext_dependency_remove_all(tmp); in llext_unload()
278 if (tmp->sect_hdrs_on_heap) { in llext_unload()
279 llext_free(tmp->sect_hdrs); in llext_unload()
282 llext_free_regions(tmp); in llext_unload()
283 llext_free(tmp->sym_tab.syms); in llext_unload()
284 llext_free(tmp->exp_tab.syms); in llext_unload()
285 llext_free(tmp); in llext_unload()