• Home
  • Raw
  • Download

Lines Matching refs:threadObj

1698 static Thread* threadObjToThread(Object* threadObj)  in threadObjToThread()  argument
1703 if (thread->threadObj == threadObj) in threadObjToThread()
1716 Object* threadObj; in dvmDbgGetThreadStatus() local
1720 threadObj = objectIdToObject(threadId); in dvmDbgGetThreadStatus()
1721 assert(threadObj != NULL); in dvmDbgGetThreadStatus()
1726 thread = threadObjToThread(threadObj); in dvmDbgGetThreadStatus()
1764 Object* threadObj; in dvmDbgGetThreadSuspendCount() local
1768 threadObj = objectIdToObject(threadId); in dvmDbgGetThreadSuspendCount()
1769 assert(threadObj != NULL); in dvmDbgGetThreadSuspendCount()
1774 thread = threadObjToThread(threadObj); in dvmDbgGetThreadSuspendCount()
1792 Object* threadObj; in dvmDbgThreadExists() local
1796 threadObj = objectIdToObject(threadId); in dvmDbgThreadExists()
1797 assert(threadObj != NULL); in dvmDbgThreadExists()
1802 thread = threadObjToThread(threadObj); in dvmDbgThreadExists()
1819 Object* threadObj; in dvmDbgIsSuspended() local
1823 threadObj = objectIdToObject(threadId); in dvmDbgIsSuspended()
1824 assert(threadObj != NULL); in dvmDbgIsSuspended()
1829 thread = threadObjToThread(threadObj); in dvmDbgIsSuspended()
1865 Object* threadObj; in dvmDbgGetThreadName() local
1870 threadObj = objectIdToObject(threadId); in dvmDbgGetThreadName()
1871 assert(threadObj != NULL); in dvmDbgGetThreadName()
1873 nameStr = (StringObject*) dvmGetFieldObject(threadObj, in dvmDbgGetThreadName()
1880 Thread* thread = threadObjToThread(threadObj); in dvmDbgGetThreadName()
1896 Object* threadObj; in dvmDbgGetThreadGroup() local
1899 threadObj = objectIdToObject(threadId); in dvmDbgGetThreadGroup()
1900 assert(threadObj != NULL); in dvmDbgGetThreadGroup()
1902 group = dvmGetFieldObject(threadObj, gDvm.offJavaLangThread_group); in dvmDbgGetThreadGroup()
1983 if (thread->threadObj == NULL) in dvmDbgGetThreadGroupThreads()
1986 group = dvmGetFieldObject(thread->threadObj, in dvmDbgGetThreadGroupThreads()
2014 if (thread->threadObj == NULL) in dvmDbgGetThreadGroupThreads()
2017 group = dvmGetFieldObject(thread->threadObj, in dvmDbgGetThreadGroupThreads()
2021 *ptr++ = objectToObjectId(thread->threadObj); in dvmDbgGetThreadGroupThreads()
2050 Object* threadObj; in dvmDbgGetThreadFrameCount() local
2054 threadObj = objectIdToObject(threadId); in dvmDbgGetThreadFrameCount()
2057 thread = threadObjToThread(threadObj); in dvmDbgGetThreadFrameCount()
2072 Object* threadObj; in dvmDbgGetThreadFrame() local
2077 threadObj = objectIdToObject(threadId); in dvmDbgGetThreadFrame()
2081 thread = threadObjToThread(threadObj); in dvmDbgGetThreadFrame()
2125 return objectToObjectId(self->threadObj); in dvmDbgGetThreadSelfId()
2149 Object* threadObj = objectIdToObject(threadId); in dvmDbgSuspendThread() local
2154 thread = threadObjToThread(threadObj); in dvmDbgSuspendThread()
2157 ALOGW("WARNING: threadid=%llx obj=%p no match", threadId, threadObj); in dvmDbgSuspendThread()
2170 Object* threadObj = objectIdToObject(threadId); in dvmDbgResumeThread() local
2175 thread = threadObjToThread(threadObj); in dvmDbgResumeThread()
2177 ALOGW("WARNING: threadid=%llx obj=%p no match", threadId, threadObj); in dvmDbgResumeThread()
2493 objectToObjectId(thread->threadObj), true); in dvmDbgPostThreadStart()
2506 objectToObjectId(thread->threadObj), false); in dvmDbgPostThreadDeath()
2563 Object* threadObj; in dvmDbgConfigureStep() local
2567 threadObj = objectIdToObject(threadId); in dvmDbgConfigureStep()
2568 assert(threadObj != NULL); in dvmDbgConfigureStep()
2576 thread = threadObjToThread(threadObj); in dvmDbgConfigureStep()
2620 Object* threadObj = objectIdToObject(threadId); in dvmDbgInvokeMethod() local
2624 Thread* targetThread = threadObjToThread(threadObj); in dvmDbgInvokeMethod()
2663 targetThread->invokeReq.thread = threadObj; in dvmDbgInvokeMethod()