HomeSort by relevance Sort by last modified time
    Searched refs:soinfo (Results 1 - 3 of 3) sorted by null

  /bionic/linker/
linker.h 81 typedef struct soinfo soinfo; typedef in typeref:struct:soinfo
89 struct soinfo struct
105 soinfo *next;
154 extern soinfo libdl_info;
212 soinfo *find_library(const char *name);
213 unsigned unload_library(soinfo *si);
214 Elf32_Sym *lookup_in_library(soinfo *si, const char *name);
215 Elf32_Sym *lookup(const char *name, soinfo **found, soinfo *start)
    [all...]
dlfcn.c 56 soinfo *ret;
78 soinfo *found;
97 soinfo *si = find_containing_library(ret_addr);
104 found = (soinfo*)handle;
134 soinfo *si = find_containing_library(addr);
161 (void)unload_library((soinfo*)handle);
264 soinfo libdl_info = {
linker.c 80 * - allocate space for soinfo structs dynamically instead of
85 static int link_image(soinfo *si, unsigned wr_offset);
88 static soinfo sopool[SO_MAX];
89 static soinfo *freelist = NULL;
90 static soinfo *solist = &libdl_info;
91 static soinfo *sonext = &libdl_info;
93 static soinfo *somain; /* main process, always the one after libdl_info */
97 static inline int validate_soinfo(soinfo *si)
109 static soinfo *preloads[LDPRELOAD_MAX + 1];
167 static void insert_soinfo_into_debug_map(soinfo * info
    [all...]

Completed in 483 milliseconds