Home | History | Annotate | Download | only in vm

Lines Matching full:threadid

75 ThreadId we pass to the debugger is the ObjectId for the java/lang/Thread
227 dvmThreadSelf()->threadId);
1713 bool dvmDbgGetThreadStatus(ObjectId threadId, u4* pThreadStatus,
1720 threadObj = objectIdToObject(threadId);
1762 u4 dvmDbgGetThreadSuspendCount(ObjectId threadId)
1768 threadObj = objectIdToObject(threadId);
1790 bool dvmDbgThreadExists(ObjectId threadId)
1796 threadObj = objectIdToObject(threadId);
1817 bool dvmDbgIsSuspended(ObjectId threadId)
1823 threadObj = objectIdToObject(threadId);
1863 char* dvmDbgGetThreadName(ObjectId threadId)
1870 threadObj = objectIdToObject(threadId);
1882 sprintf(result, "<%d> %s", thread->threadId, str);
1894 ObjectId dvmDbgGetThreadGroup(ObjectId threadId)
1899 threadObj = objectIdToObject(threadId);
2048 int dvmDbgGetThreadFrameCount(ObjectId threadId)
2054 threadObj = objectIdToObject(threadId);
2069 bool dvmDbgGetThreadFrame(ObjectId threadId, int num, FrameId* pFrameId,
2077 threadObj = objectIdToObject(threadId);
2120 * Get the ThreadId for the current thread.
2147 void dvmDbgSuspendThread(ObjectId threadId)
2149 Object* threadObj = objectIdToObject(threadId);
2157 ALOGW("WARNING: threadid=%llx obj=%p no match", threadId, threadObj);
2168 void dvmDbgResumeThread(ObjectId threadId)
2170 Object* threadObj = objectIdToObject(threadId);
2177 ALOGW("WARNING: threadid=%llx obj=%p no match", threadId, threadObj);
2236 bool dvmDbgGetThisObject(ObjectId threadId, FrameId frameId, ObjectId* pThisId)
2241 UNUSED_PARAMETER(threadId);
2256 void dvmDbgGetLocalValue(ObjectId threadId, FrameId frameId, int slot,
2264 UNUSED_PARAMETER(threadId);
2341 void dvmDbgSetLocalValue(ObjectId threadId, FrameId frameId, int slot, u1 tag,
2346 UNUSED_PARAMETER(threadId);
2560 bool dvmDbgConfigureStep(ObjectId threadId, JdwpStepSize size,
2567 threadObj = objectIdToObject(threadId);
2602 void dvmDbgUnconfigureStep(ObjectId threadId)
2604 UNUSED_PARAMETER(threadId);
2616 JdwpError dvmDbgInvokeMethod(ObjectId threadId, ObjectId objectId,
2620 Object* threadObj = objectIdToObject(threadId);
2649 ALOGW("threadid=%d: suspend count on threadid=%d is %d, too deep "
2651 dvmThreadSelf()->threadId, targetThread->threadId,