Lines Matching refs:methods
141 Method **methods; in dvmGenerateProxyClass() local
142 if (!gatherMethods(interfaces, &methods, &throws, &methodCount)) { in dvmGenerateProxyClass()
150 createHandlerMethod(newClass, &newClass->virtualMethods[i], methods[i]); in dvmGenerateProxyClass()
152 free(methods); in dvmGenerateProxyClass()
244 Method** methods = NULL; in gatherMethods() local
275 methods = (Method**) malloc(maxCount * sizeof(*methods)); in gatherMethods()
276 allMethods = (Method**) malloc(maxCount * sizeof(*methods)); in gatherMethods()
277 if (methods == NULL || allMethods == NULL) in gatherMethods()
328 actualCount = copyWithoutDuplicates(allMethods, allCount, methods, throws); in gatherMethods()
338 *pMethods = methods; in gatherMethods()
346 free(methods); in gatherMethods()