Searched refs:load_list (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/libexec/ld.so/
H A Dlibrary.c48 _dl_load_list_free(struct load_list *load_list) argument
50 struct load_list *next;
52 while (load_list != NULL) {
53 next = load_list->next;
54 _dl_free(load_list);
55 load_list = next;
92 _dl_load_list_free(object->load_list);
103 struct load_list *next_load, *load_list local
[all...]
H A Dlibrary_mquery.c48 _dl_load_list_free(struct load_list *load_list) argument
50 struct load_list *next;
53 while (load_list != NULL) {
54 if (load_list->start != NULL)
55 _dl_munmap(load_list->start,
56 ((load_list->size) + align) & ~align);
57 next = load_list->next;
58 _dl_free(load_list);
59 load_list
[all...]
H A Dresolve.h52 struct load_list { struct
53 struct load_list *next;
104 struct load_list *load_list; member in struct:elf_object
333 void _dl_load_list_free(struct load_list *load_list);
H A Dloader.c518 struct load_list *next_load, *load_list = NULL; local
597 next_load = _dl_calloc(1, sizeof(struct load_list));
600 next_load->next = load_list;
601 load_list = next_load;
622 exe_obj->load_list = load_list;
780 struct load_list *llist;
813 for (llist = object->load_list; llist != NULL; llist = llist->next) {
827 for (llist = object->load_list; llis
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp417 SectionLoadList &load_list = GetTarget().GetSectionLoadList(); local
422 addr_t load_addr = load_list.GetSectionLoadAddress(section_sp);

Completed in 147 milliseconds