Lines Matching full:threadid
75 ThreadId we pass to the debugger is the ObjectId for the java/lang/Thread
227 dvmThreadSelf()->threadId);
1718 bool dvmDbgGetThreadStatus(ObjectId threadId, u4* pThreadStatus,
1725 threadObj = objectIdToObject(threadId);
1767 u4 dvmDbgGetThreadSuspendCount(ObjectId threadId)
1773 threadObj = objectIdToObject(threadId);
1795 bool dvmDbgThreadExists(ObjectId threadId)
1801 threadObj = objectIdToObject(threadId);
1822 bool dvmDbgIsSuspended(ObjectId threadId)
1828 threadObj = objectIdToObject(threadId);
1868 char* dvmDbgGetThreadName(ObjectId threadId)
1875 threadObj = objectIdToObject(threadId);
1887 sprintf(result, "<%d> %s", thread->threadId, str);
1899 ObjectId dvmDbgGetThreadGroup(ObjectId threadId)
1904 threadObj = objectIdToObject(threadId);
2053 int dvmDbgGetThreadFrameCount(ObjectId threadId)
2059 threadObj = objectIdToObject(threadId);
2074 bool dvmDbgGetThreadFrame(ObjectId threadId, int num, FrameId* pFrameId,
2082 threadObj = objectIdToObject(threadId);
2125 * Get the ThreadId for the current thread.
2152 void dvmDbgSuspendThread(ObjectId threadId)
2154 Object* threadObj = objectIdToObject(threadId);
2162 LOGW("WARNING: threadid=%llx obj=%p no match", threadId, threadObj);
2173 void dvmDbgResumeThread(ObjectId threadId)
2175 Object* threadObj = objectIdToObject(threadId);
2182 LOGW("WARNING: threadid=%llx obj=%p no match", threadId, threadObj);
2241 bool dvmDbgGetThisObject(ObjectId threadId, FrameId frameId, ObjectId* pThisId)
2246 UNUSED_PARAMETER(threadId);
2261 void dvmDbgGetLocalValue(ObjectId threadId, FrameId frameId, int slot,
2269 UNUSED_PARAMETER(threadId);
2346 void dvmDbgSetLocalValue(ObjectId threadId, FrameId frameId, int slot, u1 tag,
2351 UNUSED_PARAMETER(threadId);
2565 bool dvmDbgConfigureStep(ObjectId threadId, JdwpStepSize size,
2572 threadObj = objectIdToObject(threadId);
2607 void dvmDbgUnconfigureStep(ObjectId threadId)
2609 UNUSED_PARAMETER(threadId);
2621 JdwpError dvmDbgInvokeMethod(ObjectId threadId, ObjectId objectId,
2625 Object* threadObj = objectIdToObject(threadId);
2654 LOGW("threadid=%d: suspend count on threadid=%d is %d, too deep "
2656 dvmThreadSelf()->threadId, targetThread->threadId,