Lines Matching defs:method

224 	*cp++ = '-';		/* for instance method */
226 *cp++ = '+'; /* for class method */
253 *cp++ = ' '; /* overwriting 1st char of method name... */
258 cp++; /* skip any initial underbars in method name */
567 If so, get the address of the method function that the dispatcher
571 method function anyway. */
800 * msymbols Compares selector part of objc method name alphabetically.
861 myregexp[strlen(myregexp) - 1] = ']'; /* end of method name */
881 name[1] == '[') /* Got a method name. */
912 name[1] == '[') /* Got a method name. */
955 * msymbols Compares class part of objc method name alphabetically.
1001 /* In the method name, the end of the class name is marked by ' '. */
1021 name[1] == '[') /* Got a method name. */
1045 name[1] == '[') /* Got a method name. */
1064 /* Copy class part of method name. */
1120 parse_selector (char *method, char **selector)
1130 s1 = method;
1175 parse_method (char *method, char *type, char **class,
1192 s1 = method;
1311 /* Not a function or method. */
1325 /* Not a method name. */
1360 /* Found a high-level method sym: swap it into the
1382 /* Found a non-debuggable method symbol. */
1396 char *method, struct symbol **syms,
1421 buf = (char *) alloca (strlen (method) + 1);
1422 strcpy (buf, method);
1430 strcpy (buf, method);
1465 return method;
1504 return method + (tmp - buf);
1521 return method + (tmp - buf);
1574 /* The data structure 'methcalls' is used to detect method calls (thru
1576 * and ultimately find the method being called.
1581 /* Return instance method to be called. */
1583 /* Start of pc range corresponding to method invocation. */
1585 /* End of pc range corresponding to method invocation. */
1643 * if so, it returns the address of the method that will be called.
1684 "Unable to determine target of Objective-C method call (ignoring):\n",
1731 read_objc_method (CORE_ADDR addr, struct objc_method *method)
1733 method->name = read_memory_unsigned_integer (addr + 0, 4);
1734 method->types = read_memory_unsigned_integer (addr + 4, 4);
1735 method->imp = read_memory_unsigned_integer (addr + 8, 4);
1746 struct objc_method *method)
1749 read_objc_method (addr + 8 + (12 * num), method);
1813 "checking method 0x%lx against selector 0x%lx\n",