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

/bionic/libc/bionic/
H A Ddl_iterate_phdr_static.c37 int dl_iterate_phdr(int (*cb)(struct dl_phdr_info* info, size_t size, void* data), void* data) { argument
H A Dwait.cpp32 extern "C" int __waitid(idtype_t which, id_t id, siginfo_t* info, int options, struct rusage* ru);
46 int waitid(idtype_t which, id_t id, siginfo_t* info, int options) { argument
48 return __waitid(which, id, info, options, NULL);
H A Ddebug_stacktrace.cpp136 Dl_info info; local
137 if (dladdr((void*) frames[i], &info) != 0) {
138 offset = info.dli_saddr;
139 symbol = info.dli_sname;
144 const char* soname = (mi != NULL) ? mi->name : info.dli_fname;
H A Dmalloc_debug_common.cpp109 * "*info" is set to a buffer we allocate
110 * "*overallSize" is set to the size of the "info" buffer
116 extern "C" void get_malloc_leak_info(uint8_t** info, size_t* overallSize, argument
119 if (info == NULL || overallSize == NULL || infoSize == NULL ||
128 *info = NULL;
156 *info = static_cast<uint8_t*>(dlmalloc(*overallSize));
158 if (*info == NULL) {
166 uint8_t* head = *info;
185 extern "C" void free_malloc_leak_info(uint8_t* info) { argument
186 dlfree(info);
[all...]
H A Dsystem_properties.c310 prop_info *info = new_prop_obj(sizeof(prop_info) + namelen + 1, &off_tmp); local
311 if (info) {
312 memcpy(info->name, name, namelen);
313 info->name[namelen] = '\0';
314 info->serial = (valuelen << 24);
315 memcpy(info->value, value, valuelen);
316 info->value[valuelen] = '\0';
321 return info;
683 prop_info *info = to_prop_obj(trie->prop); local
684 if (!info)
[all...]
/bionic/libdl/
H A Dlibdl.c24 int dladdr(const void *addr, Dl_info *info) { return 0; } argument
37 int dl_iterate_phdr(int (*cb)(void *info, void *size, void *data), void *data) { return 0; } argument
/bionic/libc/kernel/arch-x86/asm/
H A Dmath_emu.h22 struct info { struct
H A Dprocessor_32.h151 struct info *info; member in struct:i387_soft_struct
240 #define KSTK_TOP(info) ({ unsigned long *__ptr = (unsigned long *)(info); (unsigned long)(&__ptr[THREAD_SIZE_LONGS]); })
/bionic/libc/kernel/common/linux/
H A Dswap.h54 } info; member in union:swap_header
/bionic/tests/
H A Ddlfcn_test.cpp129 Dl_info info; local
130 int rc = dladdr(addr, &info);
142 std::string dli_fname(info.dli_fname);
147 ASSERT_STREQ(info.dli_sname, "DlSymTestFunction");
150 ASSERT_EQ(info.dli_saddr, sym);
172 ASSERT_EQ(info.dli_fbase, base_address);
178 Dl_info info; local
183 ASSERT_EQ(dladdr(NULL, &info), 0); // Zero on error, non-zero on success.
187 ASSERT_EQ(dladdr(&info, &info),
[all...]
/bionic/linker/
H A Ddebugger.cpp113 static void log_signal_summary(int signum, const siginfo_t* info) { argument
137 // "info" will be NULL if the siginfo_t information was not available.
138 if (info != NULL) {
141 signum, signal_name, reinterpret_cast<uintptr_t>(info->si_addr),
142 info->si_code, gettid(), thread_name);
179 void debuggerd_signal_handler(int n, siginfo_t* info, void*) { argument
182 * our "info" arg holds an undefined value.
185 info = NULL;
188 log_signal_summary(n, info);
H A Ddlfcn.cpp118 int dladdr(const void* addr, Dl_info* info) { argument
127 memset(info, 0, sizeof(Dl_info));
129 info->dli_fname = si->name;
131 info->dli_fbase = (void*) si->base;
136 info->dli_sname = si->strtab + sym->st_name;
137 info->dli_saddr = (void*)(si->load_bias + sym->st_value);
H A Dlinker.cpp83 soinfo info[SOINFO_PER_POOL]; member in struct:soinfo_pool_t
181 static void insert_soinfo_into_debug_map(soinfo * info) { argument
183 link_map_t* map = &(info->link_map);
184 map->l_addr = info->base;
185 map->l_name = (char*) info->name;
186 map->l_ld = (uintptr_t)info->dynamic;
205 static void remove_soinfo_from_debug_map(soinfo* info) { argument
206 link_map_t* map = &(info->link_map);
220 static void notify_gdb_of_load(soinfo* info) { argument
221 if (info
237 notify_gdb_of_unload(soinfo* info) argument
422 dl_iterate_phdr(int (*cb)(dl_phdr_info *info, size_t size, void *data), void *data) argument
[all...]
/bionic/libthread_db/
H A Dlibthread_db.c161 td_thr_get_info(td_thrhandle_t const * handle, td_thrinfo_t * info) argument
163 info->ti_tid = handle->tid;
164 info->ti_lid = handle->tid;
165 info->ti_state = TD_THR_SLEEP; /* XXX this needs to be read from /proc/<pid>/task/<tid>.
/bionic/libc/kernel/arch-mips/asm/
H A Dsgiarcs.h281 } info; member in union:linux_cache_key
342 struct sgi_bparm_block info; member in struct:sgi_bsector
/bionic/libc/netbsd/resolv/
H A Dres_cache.c2030 struct resolv_cache_info* info = _find_cache_info_locked(ifname); local
2032 if (info != NULL) return info->cache;
2626 struct resolv_cache_info* info = _find_cache_info_locked(statp->iface); local
2627 if (info != NULL) {
2632 ai = info->nsaddrinfo[nserv];
2657 strlcpy(statp->defdname, info->defdname, sizeof(statp->defdname));
2659 register int *p = info->dnsrch_offset;
/bionic/libc/kernel/common/sound/
H A Dasound.h329 unsigned int info; member in struct:snd_pcm_hw_params

Completed in 5572 milliseconds