Lines Matching refs:meth
277 Method* meth; in dumpMarkedMethods() local
284 meth = &clazz->virtualMethods[i]; in dumpMarkedMethods()
285 if (meth->inProfile) { in dumpMarkedMethods()
286 name = dvmDescriptorToName(meth->clazz->descriptor); in dumpMarkedMethods()
287 fprintf(fp, "0x%08x\t%s\t%s\t%s\t%s\t%d\n", (int) meth, in dumpMarkedMethods()
288 name, meth->name, in dumpMarkedMethods()
289 dexProtoGetMethodDescriptor(&meth->prototype, &stringCache), in dumpMarkedMethods()
290 dvmGetMethodSourceFile(meth), dvmLineNumFromPC(meth, 0)); in dumpMarkedMethods()
291 meth->inProfile = false; in dumpMarkedMethods()
297 meth = &clazz->directMethods[i]; in dumpMarkedMethods()
298 if (meth->inProfile) { in dumpMarkedMethods()
299 name = dvmDescriptorToName(meth->clazz->descriptor); in dumpMarkedMethods()
300 fprintf(fp, "0x%08x\t%s\t%s\t%s\t%s\t%d\n", (int) meth, in dumpMarkedMethods()
301 name, meth->name, in dumpMarkedMethods()
302 dexProtoGetMethodDescriptor(&meth->prototype, &stringCache), in dumpMarkedMethods()
303 dvmGetMethodSourceFile(meth), dvmLineNumFromPC(meth, 0)); in dumpMarkedMethods()
304 meth->inProfile = false; in dumpMarkedMethods()