HomeSort by relevance Sort by last modified time
    Searched refs:threadObj (Results 1 - 8 of 8) sorted by null

  /dalvik/vm/
Thread.cpp 294 * object monitors. We'll set the "threadObj" field later.
551 if (!dvmGetFieldBoolean(target->threadObj,
685 Object* threadObj;
721 threadObj = dvmAllocObject(gDvm.classJavaLangThread, ALLOC_DEFAULT);
722 if (threadObj == NULL) {
726 dvmReleaseTrackedAlloc(threadObj, NULL);
736 dvmCallMethod(thread, init, threadObj, &unused, groupObj, threadNameStr,
755 dvmCallMethod(thread, init, vmThreadObj, &unused, threadObj);
770 dvmSetFieldObject(threadObj, gDvm.offJavaLangThread_vmThread,
773 thread->threadObj = threadObj
    [all...]
Ddm.cpp 254 Object* threadObj = thread->threadObj;
256 if (threadObj != NULL) {
258 dvmGetFieldObject(threadObj, gDvm.offJavaLangThread_name);
394 Object* threadObj = thread->threadObj;
395 if (threadObj != NULL) {
396 isDaemon = dvmGetFieldBoolean(threadObj,
Debugger.cpp     [all...]
Thread.h 237 Object* threadObj;
495 bool dvmCreateInterpThread(Object* threadObj, int reqStackSize);
  /dalvik/vm/native/
java_lang_VMThread.cpp 33 Object* threadObj = (Object*) args[0];
36 /* copying collector will pin threadObj for us since it was an argument */
37 dvmCreateInterpThread(threadObj, (int) stackSize);
49 RETURN_PTR(dvmThreadSelf()->threadObj);
dalvik_system_VMStack.cpp 149 if (thread->threadObj == targetThreadObj)
153 ALOGI("VMStack.getTraceBuf: threadObj %p not active",
  /dalvik/vm/alloc/
Visit.cpp 169 (*visitor)(&thread->threadObj, threadId, ROOT_THREAD_OBJECT, arg);
Copying.cpp     [all...]

Completed in 194 milliseconds