Home | History | Annotate | Download | only in jdwp

Lines Matching full:threadid

104     ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
111 ALOGV(" --> threadId=%llx objectId=%llx", threadId, objectId);
140 JdwpError err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId,
756 ObjectId threadId = dvmReadObjectId(&buf);
760 threadId, 0, classId, methodId, false);
774 ObjectId threadId = dvmReadObjectId(&buf);
783 threadId, objectId, classId, methodId, true);
852 * This can get called on different things, e.g. threadId gets
934 ObjectId threadId = dvmReadObjectId(&buf);
939 threadId, objectId, classId, methodId, false);
1002 ObjectId threadId = dvmReadObjectId(&buf);
1004 ALOGV(" Req for name of thread 0x%llx", threadId);
1005 char* name = dvmDbgGetThreadName(threadId);
1024 ObjectId threadId = dvmReadObjectId(&buf);
1026 if (threadId == dvmDbgGetThreadSelfId()) {
1030 ALOGV(" Req to suspend thread 0x%llx", threadId);
1032 dvmDbgSuspendThread(threadId);
1043 ObjectId threadId = dvmReadObjectId(&buf);
1045 if (threadId == dvmDbgGetThreadSelfId()) {
1049 ALOGV(" Req to resume thread 0x%llx", threadId);
1051 dvmDbgResumeThread(threadId);
1062 ObjectId threadId = dvmReadObjectId(&buf);
1064 ALOGV(" Req for status of thread 0x%llx", threadId);
1068 if (!dvmDbgGetThreadStatus(threadId, &threadStatus, &suspendStatus))
1087 ObjectId threadId = dvmReadObjectId(&buf);
1090 ObjectId threadGroupId = dvmDbgGetThreadGroup(threadId);
1105 ObjectId threadId = dvmReadObjectId(&buf);
1109 if (!dvmDbgThreadExists(threadId))
1111 if (!dvmDbgIsSuspended(threadId)) {
1113 dvmDbgGetThreadName(threadId), threadId);
1117 int frameCount = dvmDbgGetThreadFrameCount(threadId);
1119 ALOGV(" Request for frames: threadId=%llx start=%d length=%d [count=%d]",
1120 threadId, startFrame, length, frameCount);
1135 dvmDbgGetThreadFrame(threadId, i, &frameId, &loc);
1153 ObjectId threadId = dvmReadObjectId(&buf);
1155 if (!dvmDbgThreadExists(threadId))
1157 if (!dvmDbgIsSuspended(threadId)) {
1159 dvmDbgGetThreadName(threadId), threadId);
1163 int frameCount = dvmDbgGetThreadFrameCount(threadId);
1177 ObjectId threadId;
1179 threadId = dvmReadObjectId(&buf);
1196 ObjectId threadId = dvmReadObjectId(&buf);
1198 u4 suspendCount = dvmDbgGetThreadSuspendCount(threadId);
1421 ObjectId threadId = dvmReadObjectId(&buf);
1422 LOGVV(" ThreadOnly: %llx", threadId);
1423 pEvent->mods[idx].threadOnly.threadId = threadId;
1498 ObjectId threadId;
1501 threadId = dvmReadObjectId(&buf);
1505 threadId, dvmJdwpStepSizeStr(size),
1508 pEvent->mods[idx].step.threadId = threadId;
1579 ObjectId threadId = dvmReadObjectId(&buf);
1583 ALOGV(" Req for %d slots in threadId=%llx frameId=%llx",
1584 slots, threadId, frameId);
1595 dvmDbgGetLocalValue(threadId, frameId, slot, reqSigByte, ptr, width);
1607 ObjectId threadId = dvmReadObjectId(&buf);
1611 ALOGV(" Req to set %d slots in threadId=%llx frameId=%llx",
1612 slots, threadId, frameId);
1621 dvmDbgSetLocalValue(threadId, frameId, slot, sigByte, value, width);
1633 ObjectId threadId = dvmReadObjectId(&buf);
1637 if (!dvmDbgGetThisObject(threadId, frameId, &objectId))
1642 threadId, frameId, objectId, dvmDbgGetObjectTypeName(objectId),