Searched defs:info (Results 1 - 10 of 10) sorted by relevance

/bionic/libc/arch-x86/bionic/
H A Ddl_iterate_phdr_static.c54 dl_iterate_phdr(int (*cb)(struct dl_phdr_info *info, size_t size, void *data), argument
/bionic/libc/unistd/
H A Dwait.c32 extern int __waitid(idtype_t which, id_t id, siginfo_t *info, int options, struct rusage *ru);
49 int waitid(idtype_t which, id_t id, siginfo_t *info, int options) argument
52 return __waitid(which, id, info, options, NULL);
/bionic/libdl/
H A Dlibdl.c24 int dladdr(void *addr, Dl_info *info) { return 0; } argument
32 int dl_iterate_phdr(int (*cb)(void *info, void *size, void *data), argument
/bionic/libc/kernel/arch-x86/asm/
H A Dmath_emu.h17 struct info { struct
H A Dprocessor_32.h134 struct info *info; member in struct:i387_soft_struct
228 #define KSTK_TOP(info) ({ unsigned long *__ptr = (unsigned long *)(info); (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); })
/bionic/linker/
H A Ddlfcn.c127 int dladdr(void *addr, Dl_info *info) argument
137 memset(info, 0, sizeof(Dl_info));
139 info->dli_fname = si->name;
140 info->dli_fbase = (void*)si->base;
146 info->dli_sname = si->strtab + sym->st_name;
147 info->dli_saddr = (void*)(si->base + sym->st_value);
H A Dlinker.c176 static void insert_soinfo_into_debug_map(soinfo * info) argument
182 map = &(info->linkmap);
183 map->l_addr = info->base;
184 map->l_name = (char*) info->name;
185 map->l_ld = (uintptr_t)info->dynamic;
204 static void remove_soinfo_from_debug_map(soinfo * info) argument
206 struct link_map * map = &(info->linkmap);
215 void notify_gdb_of_load(soinfo * info) argument
217 if (info->flags & FLAG_EXE) {
227 insert_soinfo_into_debug_map(info);
235 notify_gdb_of_unload(soinfo * info) argument
382 dl_iterate_phdr(int (*cb)(struct dl_phdr_info *info, size_t size, void *data), void *data) argument
679 prelink_info_t info; local
[all...]
/bionic/libc/bionic/
H A Dmalloc_debug_common.c108 * "*info" is set to a buffer we allocate
109 * "*overallSize" is set to the size of the "info" buffer
115 void get_malloc_leak_info(uint8_t** info, size_t* overallSize, argument
119 if (info == NULL || overallSize == NULL || infoSize == NULL ||
127 *info = NULL;
157 *info = (uint8_t*)dlmalloc(*overallSize);
159 if (*info == NULL) {
166 uint8_t* head = *info;
189 void free_malloc_leak_info(uint8_t* info) argument
191 dlfree(info);
[all...]
/bionic/libthread_db/
H A Dlibthread_db.c132 td_thr_get_info(td_thrhandle_t const * handle, td_thrinfo_t * info) argument
134 info->ti_tid = handle->tid;
135 info->ti_lid = handle->tid; // Our pthreads uses kernel ids for tids
136 info->ti_state = TD_THR_SLEEP; /* XXX this needs to be read from /proc/<pid>/task/<tid>.
/bionic/libc/kernel/common/media/
H A Dmsm_camera.h286 void *info; member in struct:crop_info

Completed in 343 milliseconds