Searched defs:mi (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/bionic/
H A Ddebug_mapinfo.cpp58 mapinfo_t* mi = reinterpret_cast<mapinfo_t*>(calloc(1, sizeof(mapinfo_t) + name_len + 1)); local
59 if (mi) {
60 mi->start = start;
61 mi->end = end;
62 memcpy(mi->name, name, name_len);
63 mi->name[name_len] = '\0';
65 return mi;
77 mapinfo_t* mi = parse_maps_line(data); local
78 if (mi) {
79 mi
88 mapinfo_destroy(mapinfo_t* mi) argument
99 mapinfo_find(mapinfo_t* mi, uintptr_t pc, uintptr_t* rel_pc) argument
[all...]
H A Ddebug_stacktrace.cpp159 const mapinfo_t* mi = (g_map_info != NULL) ? mapinfo_find(g_map_info, frames[i], &rel_pc) : NULL; local
160 const char* soname = (mi != NULL) ? mi->name : info.dli_fname;

Completed in 103 milliseconds