HomeSort by relevance Sort by last modified time
    Searched refs:thisPtr (Results 1 - 25 of 35) sorted by null

1 2

  /dalvik/vm/native/
java_lang_Object.cpp 32 Object* thisPtr = (Object*) args[0];
33 Object* clone = dvmCloneObject(thisPtr, ALLOC_DONT_TRACK);
43 Object* thisPtr = (Object*) args[0];
44 RETURN_INT(dvmIdentityHashCode(thisPtr));
52 Object* thisPtr = (Object*) args[0];
54 RETURN_PTR(thisPtr->clazz);
66 Object* thisPtr = (Object*) args[0];
68 dvmObjectNotify(self, thisPtr);
78 Object* thisPtr = (Object*) args[0];
80 dvmObjectNotifyAll(self, thisPtr);
    [all...]
java_lang_VMThread.cpp 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_Class.cpp 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);
439 ClassObject* thisPtr = (ClassObject*) args[0]
    [all...]
java_lang_System.cpp 372 Object* thisPtr = (Object*) args[0];
373 RETURN_INT(dvmIdentityHashCode(thisPtr));
  /dalvik/vm/mterp/armv5te/
OP_INVOKE_VIRTUAL_QUICK.S 19 ldr r2, [r9, #offObject_clazz] @ r2<- thisPtr->clazz
20 ldr r2, [r2, #offClassObject_vtable] @ r2<- thisPtr->clazz->vtable
OP_INVOKE_VIRTUAL.S 42 ldr r3, [r9, #offObject_clazz] @ r3<- thisPtr->clazz
43 ldr r3, [r3, #offClassObject_vtable] @ r3<- thisPtr->clazz->vtable
OP_INVOKE_INTERFACE.S 23 ldr r0, [r9, #offObject_clazz] @ r0<- thisPtr->clazz
  /dalvik/vm/mterp/mips/
OP_INVOKE_VIRTUAL_QUICK.S 19 LOAD_base_offObject_clazz(a2, rOBJ) # a2 <- thisPtr->clazz
20 LOAD_base_offClassObject_vtable(a2, a2) # a2 <- thisPtr->clazz->vtable
OP_INVOKE_VIRTUAL.S 44 LOAD_base_offObject_clazz(a3, rOBJ) # a3 <- thisPtr->clazz
45 LOAD_base_offClassObject_vtable(a3, a3) # a3 <- thisPtr->clazz->vtable
OP_INVOKE_INTERFACE.S 23 LOAD_base_offObject_clazz(a0, rOBJ) # a0 <- thisPtr->clazz
  /dalvik/vm/mterp/x86/
OP_INVOKE_VIRTUAL_QUICK.S 19 movl offObject_clazz(%ecx),%eax # eax<- thisPtr->clazz
20 movl offClassObject_vtable(%eax),%eax # eax<- thisPtr->clazz->vtable
OP_INVOKE_VIRTUAL.S 45 movl offObject_clazz(%ecx),%edx # edx<- thisPtr->clazz
46 movl offClassObject_vtable(%edx),%edx # edx<- thisPtr->clazz->vtable
OP_INVOKE_INTERFACE.S 22 movl offObject_clazz(%eax),%eax# eax<- thisPtr->clazz
  /external/chromium_org/third_party/WebKit/Source/core/loader/
WorkerThreadableLoader.cpp 104 void WorkerThreadableLoader::MainThreadBridge::mainThreadCreateLoader(ExecutionContext* context, MainThreadBridge* thisPtr, PassOwnPtr<CrossThreadResourceRequestData> requestData, ThreadableLoaderOptions options, const String& outgoingReferrer)
112 thisPtr->m_mainThreadLoader = DocumentThreadableLoader::create(document, thisPtr, *request, options);
113 if (!thisPtr->m_mainThreadLoader) {
115 thisPtr->didFail(ResourceError(errorDomainBlinkInternal, 0, request->url().string(), "Can't create DocumentThreadableLoader"));
119 void WorkerThreadableLoader::MainThreadBridge::mainThreadDestroy(ExecutionContext* context, MainThreadBridge* thisPtr)
123 delete thisPtr;
136 void WorkerThreadableLoader::MainThreadBridge::mainThreadCancel(ExecutionContext* context, MainThreadBridge* thisPtr)
141 if (!thisPtr->m_mainThreadLoader)
143 thisPtr->m_mainThreadLoader->cancel()
    [all...]
  /dalvik/vm/mterp/c/
gotoTargets.cpp 109 Object* thisPtr;
125 thisPtr = (Object*) GET_REGISTER(vdst);
130 thisPtr = (Object*) GET_REGISTER(vdst & 0x0f);
133 if (!checkForNull(thisPtr))
153 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount);
154 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex];
158 self->callsiteClass = thisPtr->clazz;
282 Object* thisPtr;
299 thisPtr = (Object*) GET_REGISTER(vdst);
304 thisPtr = (Object*) GET_REGISTER(vdst & 0x0f)
    [all...]
  /dalvik/vm/jdwp/
Jdwp.h 203 ObjectId thisPtr, int eventFlags);
212 ObjectId thisPtr);
JdwpEvent.cpp 111 ObjectId thisPtr; /* InstanceOnly */
515 if (pMod->instanceOnly.objectId != basket->thisPtr)
810 ObjectId thisPtr, int eventFlags)
819 basket.thisPtr = thisPtr;
1023 const JdwpLocation* pCatchLoc, ObjectId thisPtr)
1037 basket.thisPtr = thisPtr;
    [all...]
  /dalvik/vm/mterp/out/
InterpC-mips.cpp     [all...]
InterpC-x86.cpp     [all...]
InterpC-allstubs.cpp     [all...]
InterpC-portable.cpp     [all...]
  /dalvik/vm/interp/
Interp.cpp 669 Object* thisPtr = dvmGetThisPtr(self->interpSave.method, fp);
670 assert(thisPtr == NULL || dvmIsHeapAddress(thisPtr));
671 dvmDbgPostLocationEvent(methodToCall, -1, thisPtr, DBG_METHOD_ENTRY);
683 Object* thisPtr = dvmGetThisPtr(self->interpSave.method, fp);
684 assert(thisPtr == NULL || dvmIsHeapAddress(thisPtr));
685 dvmDbgPostLocationEvent(methodToCall, -1, thisPtr, DBG_METHOD_EXIT);
860 Object* thisPtr = dvmGetThisPtr(method, fp);
861 if (thisPtr != NULL && !dvmIsHeapAddress(thisPtr))
    [all...]
  /art/runtime/jdwp/
jdwp_event.cc 111 caught(false), field(0), thisPtr(0) { }
120 ObjectId thisPtr; /* InstanceOnly */
435 if (pMod->instanceOnly.objectId != basket->thisPtr) {
722 bool JdwpState::PostLocationEvent(const JdwpLocation* pLoc, ObjectId thisPtr, int eventFlags) {
726 basket.thisPtr = thisPtr;
896 const JdwpLocation* pCatchLoc, ObjectId thisPtr) {
905 basket.thisPtr = thisPtr;
    [all...]
jdwp.h 189 bool PostLocationEvent(const JdwpLocation* pLoc, ObjectId thisPtr, int eventFlags)
198 const JdwpLocation* pCatchLoc, ObjectId thisPtr)
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptDebugServer.cpp 367 ScriptDebugServer* thisPtr = toScriptDebugServer(info.Data());
370 thisPtr->handleProgramBreak(v8::Handle<v8::Object>::Cast(info[0]), exception, hitBreakpoints);
411 ScriptDebugServer* thisPtr = toScriptDebugServer(eventDetails.GetCallbackData());
412 thisPtr->handleV8DebugEvent(eventDetails);

Completed in 214 milliseconds

1 2