Home | History | Annotate | Download | only in debuggerd

Lines Matching refs:mi

58 const char *map_to_name(mapinfo *mi, unsigned pc, const char* def)
60 while(mi) {
61 if((pc >= mi->start) && (pc < mi->end)){
62 return mi->name;
64 mi = mi->next;
70 const mapinfo *pc_to_mapinfo(mapinfo *mi, unsigned pc, unsigned *rel_pc)
72 while(mi) {
73 if((pc >= mi->start) && (pc < mi->end)){
75 if (strstr(mi->name, ".so")) {
76 *rel_pc = pc - mi->start;
78 return mi;
80 mi = mi->next;