Home | History | Annotate | Download | only in out

Lines Matching defs:clazz

125                 curMethod->clazz->descriptor, curMethod->name, desc);       \
373 if (obj->clazz == NULL || ((u4) obj->clazz) <= 65536) {
375 LOGE("Invalid object class %p (in %p)\n", obj->clazz, obj);
405 if (obj->clazz == NULL || ((u4) obj->clazz) <= 65536) {
407 LOGE("Invalid object class %p (in %p)\n", obj->clazz, obj);
1061 ifield = dvmResolveInstField(curMethod->clazz, ref); \
1106 ifield = dvmResolveInstField(curMethod->clazz, ref); \
1151 sfield = dvmResolveStaticField(curMethod->clazz, ref); \
1175 sfield = dvmResolveStaticField(curMethod->clazz, ref); \
1352 method->clazz->descriptor, method->name, desc);
1387 strcmp(method->clazz->descriptor, cd) == 0 &&
1392 method->clazz->descriptor, method->name);
1448 DvmDex* methodClassDex; // curMethod->clazz->pDvmDex
1511 methodClassDex = curMethod->clazz->pDvmDex;
1515 curMethod->clazz->descriptor, curMethod->name, pc - curMethod->insns,
1525 ILOGD("|-- Now interpreting %s.%s", curMethod->clazz->descriptor,
1849 strObj = dvmResolveString(curMethod->clazz, ref);
1871 strObj = dvmResolveString(curMethod->clazz, tmp);
1883 ClassObject* clazz;
1888 clazz = dvmDexGetResolvedClass(methodClassDex, ref);
1889 if (clazz == NULL) {
1891 clazz = dvmResolveClass(curMethod->clazz, ref, true);
1892 if (clazz == NULL)
1895 SET_REGISTER(vdst, (u4) clazz);
1911 ILOGV("+ locking %p %s\n", obj, obj->clazz->descriptor);
1944 ILOGV("+ unlocking %p %s\n", obj, obj->clazz->descriptor);
1957 ClassObject* clazz;
1972 clazz = dvmDexGetResolvedClass(methodClassDex, ref);
1973 if (clazz == NULL) {
1974 clazz = dvmResolveClass(curMethod->clazz, ref, false);
1975 if (clazz == NULL)
1978 if (!dvmInstanceof(obj->clazz, clazz)) {
1980 "Ljava/lang/ClassCastException;", obj->clazz->descriptor);
1991 ClassObject* clazz;
2007 clazz = dvmDexGetResolvedClass(methodClassDex, ref);
2008 if (clazz == NULL) {
2010 clazz = dvmResolveClass(curMethod->clazz, ref, true);
2011 if (clazz == NULL)
2014 SET_REGISTER(vdst, dvmInstanceof(obj->clazz, clazz));
2040 ClassObject* clazz;
2048 clazz = dvmDexGetResolvedClass(methodClassDex, ref);
2049 if (clazz == NULL) {
2050 clazz = dvmResolveClass(curMethod->clazz, ref, false);
2051 if (clazz == NULL)
2055 if (!dvmIsClassInitialized(clazz) && !dvmInitClass(clazz))
2071 //if (dvmIsInterfaceClass(clazz) || dvmIsAbstractClass(clazz)) {
2073 // clazz->descriptor);
2076 newObj = dvmAllocObject(clazz, ALLOC_DONT_TRACK);
2105 arrayClass = dvmResolveClass(curMethod->clazz, ref, false);
2447 if (!dvmCanPutArrayElement(obj->clazz, arrayObj->obj.clazz)) {
2449 obj->clazz->descriptor, obj,
2450 arrayObj->obj.clazz->descriptor, arrayObj);
2451 //dvmDumpClass(obj->clazz);
2452 //dvmDumpClass(arrayObj->obj.clazz);
3449 arrayClass = dvmResolveClass(curMethod->clazz, ref, false);
3550 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
3561 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount);
3562 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex];
3565 callsiteClass = thisPtr->clazz;
3589 baseMethod->clazz->descriptor, baseMethod->name,
3591 methodToCall->clazz->descriptor, methodToCall->name);
3597 baseMethod->clazz->descriptor, baseMethod->name,
3599 methodToCall->clazz->descriptor, methodToCall->name);
3600 //dvmDumpClass(baseMethod->clazz);
3601 //dvmDumpClass(methodToCall->clazz);
3643 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
3659 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) {
3668 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
3680 baseMethod->clazz->descriptor, baseMethod->name,
3681 methodToCall->clazz->descriptor, methodToCall->name);
3717 thisClass = thisPtr->clazz;
3762 methodToCall = dvmResolveMethod(curMethod->clazz, ref,
3789 methodToCall = dvmResolveMethod(curMethod->clazz, ref, METHOD_STATIC);
3838 callsiteClass = thisPtr->clazz;
3845 assert(ref < thisPtr->clazz->vtableCount);
3846 methodToCall = thisPtr->clazz->vtable[ref];
3860 ref, methodToCall->clazz->descriptor, methodToCall->name);
3891 if (ref >= curMethod->clazz->super->vtableCount) {
3896 assert(ref < curMethod->clazz->super->vtableCount);
3908 methodToCall = curMethod->clazz->super->vtable[ref];
3921 ref, methodToCall->clazz->descriptor, methodToCall->name);
3947 retval.j, curMethod->clazz->descriptor, curMethod->name,
3976 //methodClass = curMethod->clazz;
3977 methodClassDex = curMethod->clazz->pDvmDex;
3979 ILOGD("> (return to %s.%s %s)", curMethod->clazz->descriptor,
4030 exception->clazz->descriptor, curMethod->name,
4103 exception->clazz->descriptor, dvmGetMethodSourceFile(curMethod),
4115 exception->clazz->descriptor, dvmGetMethodSourceFile(curMethod),
4128 //methodClass = curMethod->clazz;
4129 methodClassDex = curMethod->clazz->pDvmDex;
4131 ILOGV("> pc <-- %s.%s %s", curMethod->clazz->descriptor,
4181 //printf(" --> %s.%s %s\n", methodToCall->clazz->descriptor,
4251 methodToCall->clazz->descriptor, methodToCall->name,
4304 methodClassDex = curMethod->clazz->pDvmDex;
4313 ILOGD("> pc <-- %s.%s %s", curMethod->clazz->descriptor,
4340 ILOGD("> native <-- %s.%s %s", methodToCall->clazz->descriptor,
4382 methodToCall->clazz->descriptor, methodToCall->name,
4383 curMethod->clazz->descriptor, curMethod->name,
4438 curMethod->clazz->descriptor, curMethod->name,