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

  /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/vm/
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,
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...]
Thread.h 237 Object* threadObj;
486 bool dvmCreateInterpThread(Object* threadObj, int reqStackSize);
Debugger.cpp     [all...]

Completed in 87 milliseconds