HomeSort by relevance Sort by last modified time
    Searched defs:thisPtr (Results 1 - 12 of 12) sorted by null

  /dalvik/vm/native/
java_lang_Object.c 32 Object* thisPtr = (Object*) args[0];
33 Object* clone = dvmCloneObject(thisPtr);
44 Object* thisPtr = (Object*) args[0];
45 RETURN_INT(dvmIdentityHashCode(thisPtr));
53 Object* thisPtr = (Object*) args[0];
55 RETURN_PTR(thisPtr->clazz);
67 Object* thisPtr = (Object*) args[0];
69 dvmObjectNotify(self, thisPtr);
79 Object* thisPtr = (Object*) args[0];
81 dvmObjectNotifyAll(self, thisPtr);
    [all...]
java_lang_VMThread.c 60 Object* thisPtr = (Object*) args[0];
65 thread = dvmGetThreadFromThreadObject(thisPtr);
83 Object* thisPtr = (Object*) args[0];
93 thread = dvmGetThreadFromThreadObject(thisPtr);
107 Object* thisPtr = (Object*) args[0];
111 thread = dvmGetThreadFromThreadObject(thisPtr);
145 Object* thisPtr = (Object*) args[0];
150 thread = dvmGetThreadFromThreadObject(thisPtr);
168 Object* thisPtr = (Object*) args[0];
175 thread = dvmGetThreadFromThreadObject(thisPtr);
    [all...]
java_lang_System.c 258 Object* thisPtr = (Object*) args[0];
259 RETURN_INT(dvmIdentityHashCode(thisPtr));
java_lang_Class.c 34 ClassObject* thisPtr = (ClassObject*) args[0];
35 char* className = dvmDescriptorToName(thisPtr->descriptor);
154 ClassObject* thisPtr = (ClassObject*) args[0];
156 if (!dvmIsArrayClass(thisPtr))
160 * We can't just return thisPtr->elementClass, because that gives
164 if (thisPtr->descriptor[1] == '[')
165 RETURN_PTR(dvmFindArrayClass(&thisPtr->descriptor[1],
166 thisPtr->classLoader));
168 RETURN_PTR(thisPtr->elementClass);
435 ClassObject* thisPtr = (ClassObject*) args[0]
    [all...]
  /dalvik/vm/mterp/portable/
debug.c 154 Object* thisPtr = dvmGetThisPtr(method, fp);
155 if (thisPtr != NULL && !dvmIsValidObject(thisPtr)) {
162 LOGE("HEY: invalid 'this' ptr %p (%s.%s %s)\n", thisPtr,
167 dvmDbgPostLocationEvent(method, pc - method->insns, thisPtr,
  /dalvik/vm/mterp/c/
gotoTargets.c 110 Object* thisPtr;
126 thisPtr = (Object*) GET_REGISTER(vdst);
131 thisPtr = (Object*) GET_REGISTER(vdst & 0x0f);
134 if (!checkForNull(thisPtr))
154 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount);
155 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex];
158 callsiteClass = thisPtr->clazz;
283 Object* thisPtr;
300 thisPtr = (Object*) GET_REGISTER(vdst);
305 thisPtr = (Object*) GET_REGISTER(vdst & 0x0f)
    [all...]
  /dalvik/vm/jdwp/
JdwpEvent.c 111 ObjectId thisPtr; /* InstanceOnly */
510 if (pMod->instanceOnly.objectId != basket->thisPtr)
810 ObjectId thisPtr, int eventFlags)
821 basket.thisPtr = thisPtr;
1033 const JdwpLocation* pCatchLoc, ObjectId thisPtr)
1049 basket.thisPtr = thisPtr;
    [all...]
  /dalvik/vm/mterp/out/
InterpC-allstubs.c     [all...]
InterpC-portdbg.c     [all...]
InterpC-portstd.c     [all...]
InterpC-x86-atom.c     [all...]
InterpC-x86.c     [all...]

Completed in 121 milliseconds