Home | History | Annotate | Download | only in analysis

Lines Matching defs:clazz

244         vdata->method->clazz->descriptor, vdata->method->name,
296 vdata->method->clazz->descriptor,
304 vdata->method->clazz->descriptor,
318 vdata->method->clazz->descriptor,
326 vdata->method->clazz->descriptor,
475 if (strcmp(vdata->method->clazz->descriptor, cd) == 0 &&
480 LOGI("Map for %s.%s %s\n", vdata->method->clazz->descriptor,
611 meth->clazz->descriptor, meth->name);
636 static bool writeMapsAllMethods(DvmDex* pDvmDex, const ClassObject* clazz,
644 if (clazz->virtualMethodCount + clazz->directMethodCount >= 65536) {
645 LOGE("Too many methods in %s\n", clazz->descriptor);
666 for (i = 0; i < clazz->directMethodCount; i++) {
667 const Method* meth = &clazz->directMethods[i];
670 if (!writeMapForMethod(&clazz->directMethods[i], &ptr)) {
677 for (i = 0; i < clazz->virtualMethodCount; i++) {
678 const Method* meth = &clazz->virtualMethods[i];
681 if (!writeMapForMethod(&clazz->virtualMethods[i], &ptr)) {
724 ClassObject* clazz;
738 clazz = NULL;
740 clazz = dvmLookupClass(classDescriptor, NULL, false);
742 if (clazz != NULL) {
747 if (!writeMapsAllMethods(pDvmDex, clazz, &ptr,
754 LOGVV("Size %s (%d+%d methods): %d\n", clazz->descriptor,
755 clazz->directMethodCount, clazz->virtualMethodCount,
1025 method->clazz->descriptor, method->name);
1028 method->clazz->descriptor, method->name);
1043 format, method->clazz->descriptor, method->name);
1063 method->clazz->descriptor, method->name, desc);
1284 prevAddr, addr, method->clazz->descriptor, method->name);
1289 method->clazz->descriptor, method->name);
1451 strcmp(meth->clazz->descriptor, "Landroid/text/StaticLayout;") == 0 &&
1475 meth->clazz->descriptor, meth->name,
1633 meth->clazz->descriptor, meth->name);
1653 newMapSize, origSize, meth->clazz->descriptor, meth->name);
2256 meth->clazz->descriptor, meth->name, desc,
2316 meth->clazz->descriptor, meth->name, desc);
2357 resMethod = dvmOptResolveInterfaceMethod(meth->clazz, pDecInsn->vB);
2359 resMethod = dvmOptResolveMethod(meth->clazz, pDecInsn->vB, methodType);
2363 DexFile* pDexFile = meth->clazz->pDvmDex->pDexFile;
3141 DexFile* pDexFile = meth->clazz->pDvmDex->pDexFile;