Home | History | Annotate | Download | only in gdb

Lines Matching defs:methcalls

1206 /* The data structure 'methcalls' is used to detect method calls (through
1226 static struct objc_methcall methcalls[] = {
1235 #define nmethcalls (sizeof (methcalls) / sizeof (methcalls[0]))
1253 = lookup_minimal_symbol (current_program_space, methcalls[i].name);
1254 if ((func.minsym == NULL) && (methcalls[i].name[0] == '_'))
1257 methcalls[i].name + 1);
1261 methcalls[i].begin = 0;
1262 methcalls[i].end = 0;
1266 methcalls[i].begin = func.value_address ();
1267 methcalls[i].end = minimal_symbol_upper_bound (func);
1318 if ((pc >= methcalls[i].begin) && (pc < methcalls[i].end))
1320 if (methcalls[i].stop_at != NULL)
1321 return find_objc_msgcall_submethod (methcalls[i].stop_at,