Lines Matching full:threadid
104 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
111 LOGV(" --> threadId=%llx objectId=%llx", threadId, objectId);
140 JdwpError err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId,
755 ObjectId threadId = dvmReadObjectId(&buf);
759 threadId, 0, classId, methodId, false);
773 ObjectId threadId = dvmReadObjectId(&buf);
782 threadId, objectId, classId, methodId, true);
851 * This can get called on different things, e.g. threadId gets
933 ObjectId threadId = dvmReadObjectId(&buf);
938 threadId, objectId, classId, methodId, false);
1001 ObjectId threadId = dvmReadObjectId(&buf);
1003 LOGV(" Req for name of thread 0x%llx", threadId);
1004 char* name = dvmDbgGetThreadName(threadId);
1023 ObjectId threadId = dvmReadObjectId(&buf);
1025 if (threadId == dvmDbgGetThreadSelfId()) {
1029 LOGV(" Req to suspend thread 0x%llx", threadId);
1031 dvmDbgSuspendThread(threadId);
1042 ObjectId threadId = dvmReadObjectId(&buf);
1044 if (threadId == dvmDbgGetThreadSelfId()) {
1048 LOGV(" Req to resume thread 0x%llx", threadId);
1050 dvmDbgResumeThread(threadId);
1061 ObjectId threadId = dvmReadObjectId(&buf);
1063 LOGV(" Req for status of thread 0x%llx", threadId);
1067 if (!dvmDbgGetThreadStatus(threadId, &threadStatus, &suspendStatus))
1085 ObjectId threadId = dvmReadObjectId(&buf);
1088 ObjectId threadGroupId = dvmDbgGetThreadGroup(threadId);
1103 ObjectId threadId = dvmReadObjectId(&buf);
1107 if (!dvmDbgThreadExists(threadId))
1109 if (!dvmDbgIsSuspended(threadId)) {
1111 dvmDbgGetThreadName(threadId), threadId);
1115 int frameCount = dvmDbgGetThreadFrameCount(threadId);
1117 LOGV(" Request for frames: threadId=%llx start=%d length=%d [count=%d]",
1118 threadId, startFrame, length, frameCount);
1133 dvmDbgGetThreadFrame(threadId, i, &frameId, &loc);
1151 ObjectId threadId = dvmReadObjectId(&buf);
1153 if (!dvmDbgThreadExists(threadId))
1155 if (!dvmDbgIsSuspended(threadId)) {
1157 dvmDbgGetThreadName(threadId), threadId);
1161 int frameCount = dvmDbgGetThreadFrameCount(threadId);
1175 ObjectId threadId;
1177 threadId = dvmReadObjectId(&buf);
1194 ObjectId threadId = dvmReadObjectId(&buf);
1196 u4 suspendCount = dvmDbgGetThreadSuspendCount(threadId);
1419 ObjectId threadId = dvmReadObjectId(&buf);
1420 LOGVV(" ThreadOnly: %llx", threadId);
1421 pEvent->mods[idx].threadOnly.threadId = threadId;
1496 ObjectId threadId;
1499 threadId = dvmReadObjectId(&buf);
1503 threadId, dvmJdwpStepSizeStr(size),
1506 pEvent->mods[idx].step.threadId = threadId;
1577 ObjectId threadId = dvmReadObjectId(&buf);
1581 LOGV(" Req for %d slots in threadId=%llx frameId=%llx",
1582 slots, threadId, frameId);
1593 dvmDbgGetLocalValue(threadId, frameId, slot, reqSigByte, ptr, width);
1605 ObjectId threadId = dvmReadObjectId(&buf);
1609 LOGV(" Req to set %d slots in threadId=%llx frameId=%llx",
1610 slots, threadId, frameId);
1619 dvmDbgSetLocalValue(threadId, frameId, slot, sigByte, value, width);
1631 ObjectId threadId = dvmReadObjectId(&buf);
1635 if (!dvmDbgGetThisObject(threadId, frameId, &objectId))
1640 threadId, frameId, objectId, dvmDbgGetObjectTypeName(objectId),