Home | History | Annotate | Download | only in c

Lines Matching refs:ref

23             ref = FETCH(1) | (u4)FETCH(2) << 16;  /* class ref */
28 vsrc1, ref, vdst, vdst+vsrc1-1);
30 ref = FETCH(1); /* class ref */
37 vsrc1, ref, vdst, vdst+vsrc1-1);
42 vsrc1, ref, vdst, arg5);
49 arrayClass = dvmDexGetResolvedClass(methodClassDex, ref);
51 arrayClass = dvmResolveClass(curMethod->clazz, ref, false);
127 ref = FETCH(1) | (u4)FETCH(2) << 16; /* method ref */
132 vsrc1, ref, vdst, vdst+vsrc1-1);
136 ref = FETCH(1); /* method ref */
146 vsrc1, ref, vdst, vdst+vsrc1-1);
151 vsrc1 >> 4, ref, vdst, vsrc1 & 0x0f);
163 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
165 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
233 ref = FETCH(1) | (u4)FETCH(2) << 16; /* method ref */
238 vsrc1, ref, vdst, vdst+vsrc1-1);
242 ref = FETCH(1); /* method ref */
247 vsrc1, ref, vdst, vdst+vsrc1-1);
251 vsrc1 >> 4, ref, vdst, vsrc1 & 0x0f);
267 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
269 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
321 ref = FETCH(1) | (u4)FETCH(2) << 16; /* method ref */
326 vsrc1, ref, vdst, vdst+vsrc1-1);
330 ref = FETCH(1); /* method ref */
340 vsrc1, ref, vdst, vdst+vsrc1-1);
345 vsrc1 >> 4, ref, vdst, vsrc1 & 0x0f);
360 methodToCall = dvmFindInterfaceMethodInCache(thisClass, ref, curMethod,
382 ref = FETCH(1) | (u4)FETCH(2) << 16; /* method ref */
387 vsrc1, ref, vdst, vdst+vsrc1-1);
391 ref = FETCH(1); /* method ref */
396 vsrc1, ref, vdst, vdst+vsrc1-1);
400 vsrc1 >> 4, ref, vdst, vsrc1 & 0x0f);
408 methodToCall = dvmDexGetResolvedMethod(methodClassDex, ref);
410 methodToCall = dvmResolveMethod(curMethod->clazz, ref,
425 ref = FETCH(1) | (u4)FETCH(2) << 16; /* method ref */
430 vsrc1, ref, vdst, vdst+vsrc1-1);
433 refref */
438 vsrc1, ref, vdst, vdst+vsrc1-1);
441 vsrc1 >> 4, ref, vdst, vsrc1 & 0x0f);
444 methodToCall = dvmDexGetResolvedMethod(methodClassDex, ref);
446 methodToCall = dvmResolveMethod(curMethod->clazz, ref, METHOD_STATIC);
459 (dvmDexGetResolvedMethod(methodClassDex, ref) == NULL)) {
475 ref = FETCH(1); /* vtable index */
485 vsrc1, ref, vdst, vdst+vsrc1-1);
490 vsrc1 >> 4, ref, vdst, vsrc1 & 0x0f);
502 assert(ref < (unsigned int) thisPtr->clazz->vtableCount);
503 methodToCall = thisPtr->clazz->vtable[ref];
520 ref, methodToCall->clazz->descriptor, methodToCall->name);
534 ref = FETCH(1); /* vtable index */
539 vsrc1, ref, vdst, vdst+vsrc1-1);
543 vsrc1 >> 4, ref, vdst, vsrc1 & 0x0f);
551 if (ref >= curMethod->clazz->super->vtableCount) {
556 assert(ref < (unsigned int) curMethod->clazz->super->vtableCount);
568 methodToCall = curMethod->clazz->super->vtable[ref];
580 ref, methodToCall->clazz->descriptor, methodToCall->name);