Lines Matching refs:threadId

116     ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId)
126 LOGV(" --> threadId=%llx objectId=%llx\n", threadId, objectId);
159 err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId,
829 ObjectId threadId;
833 threadId = dvmReadObjectId(&buf);
837 threadId, 0, classId, methodId);
892 * This can get called on different things, e.g. threadId gets
1004 ObjectId threadId;
1009 threadId = dvmReadObjectId(&buf);
1014 threadId, objectId, classId, methodId);
1081 ObjectId threadId;
1084 threadId = dvmReadObjectId(&buf);
1086 LOGV(" Req for name of thread 0x%llx\n", threadId);
1087 name = dvmDbgGetThreadName(threadId);
1106 ObjectId threadId;
1108 threadId = dvmReadObjectId(&buf);
1110 if (threadId == dvmDbgGetThreadSelfId()) {
1114 LOGV(" Req to suspend thread 0x%llx\n", threadId);
1116 dvmDbgSuspendThread(threadId);
1127 ObjectId threadId;
1129 threadId = dvmReadObjectId(&buf);
1131 if (threadId == dvmDbgGetThreadSelfId()) {
1135 LOGV(" Req to resume thread 0x%llx\n", threadId);
1137 dvmDbgResumeThread(threadId);
1148 ObjectId threadId;
1152 threadId = dvmReadObjectId(&buf);
1154 LOGV(" Req for status of thread 0x%llx\n", threadId);
1156 if (!dvmDbgGetThreadStatus(threadId, &threadStatus, &suspendStatus))
1174 ObjectId threadId;
1177 threadId = dvmReadObjectId(&buf);
1180 threadGroupId = dvmDbgGetThreadGroup(threadId);
1195 ObjectId threadId;
1199 threadId = dvmReadObjectId(&buf);
1203 if (!dvmDbgThreadExists(threadId))
1205 if (!dvmDbgIsSuspended(threadId)) {
1207 dvmDbgGetThreadName(threadId), threadId);
1211 frameCount = dvmDbgGetThreadFrameCount(threadId);
1213 LOGV(" Request for frames: threadId=%llx start=%d length=%d [count=%d]\n",
1214 threadId, startFrame, length, frameCount);
1229 dvmDbgGetThreadFrame(threadId, i, &frameId, &loc);
1247 ObjectId threadId;
1250 threadId = dvmReadObjectId(&buf);
1252 if (!dvmDbgThreadExists(threadId))
1254 if (!dvmDbgIsSuspended(threadId)) {
1256 dvmDbgGetThreadName(threadId), threadId);
1260 frameCount = dvmDbgGetThreadFrameCount(threadId);
1274 ObjectId threadId;
1276 threadId = dvmReadObjectId(&buf);
1293 ObjectId threadId;
1296 threadId = dvmReadObjectId(&buf);
1298 suspendCount = dvmDbgGetThreadSuspendCount(threadId);
1358 ObjectId threadId;
1557 ObjectId threadId = dvmReadObjectId(&buf);
1558 LOGVV(" ThreadOnly: %llx\n", threadId);
1559 pEvent->mods[idx].threadOnly.threadId = threadId;
1634 ObjectId threadId;
1637 threadId = dvmReadObjectId(&buf);
1641 threadId, dvmJdwpStepSizeStr(size),
1644 pEvent->mods[idx].step.threadId = threadId;
1717 ObjectId threadId;
1722 threadId = dvmReadObjectId(&buf);
1726 LOGV(" Req for %d slots in threadId=%llx frameId=%llx\n",
1727 slots, threadId, frameId);
1743 dvmDbgGetLocalValue(threadId, frameId, slot, reqSigByte, ptr, width);
1755 ObjectId threadId;
1760 threadId = dvmReadObjectId(&buf);
1764 LOGV(" Req to set %d slots in threadId=%llx frameId=%llx\n",
1765 slots, threadId, frameId);
1779 dvmDbgSetLocalValue(threadId, frameId, slot, sigByte, value, width);
1791 ObjectId threadId;
1797 threadId = dvmReadObjectId(&buf);
1800 if (!dvmDbgGetThisObject(threadId, frameId, &objectId))
1811 threadId, frameId, objectId, typeName, (char)objectTag);