Home | History | Annotate | Download | only in jdwp

Lines Matching refs:threadId

121     ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
134 LOGV(" --> threadId=%llx objectId=%llx\n", threadId, objectId);
167 err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId,
859 ObjectId threadId;
863 threadId = dvmReadObjectId(&buf);
867 threadId, 0, classId, methodId, false);
881 ObjectId threadId;
886 threadId = dvmReadObjectId(&buf);
895 threadId, objectId, classId, methodId, true);
974 * This can get called on different things, e.g. threadId gets
1085 ObjectId threadId;
1090 threadId = dvmReadObjectId(&buf);
1095 threadId, objectId, classId, methodId, false);
1162 ObjectId threadId;
1165 threadId = dvmReadObjectId(&buf);
1167 LOGV(" Req for name of thread 0x%llx\n", threadId);
1168 name = dvmDbgGetThreadName(threadId);
1187 ObjectId threadId;
1189 threadId = dvmReadObjectId(&buf);
1191 if (threadId == dvmDbgGetThreadSelfId()) {
1195 LOGV(" Req to suspend thread 0x%llx\n", threadId);
1197 dvmDbgSuspendThread(threadId);
1208 ObjectId threadId;
1210 threadId = dvmReadObjectId(&buf);
1212 if (threadId == dvmDbgGetThreadSelfId()) {
1216 LOGV(" Req to resume thread 0x%llx\n", threadId);
1218 dvmDbgResumeThread(threadId);
1229 ObjectId threadId;
1233 threadId = dvmReadObjectId(&buf);
1235 LOGV(" Req for status of thread 0x%llx\n", threadId);
1237 if (!dvmDbgGetThreadStatus(threadId, &threadStatus, &suspendStatus))
1255 ObjectId threadId;
1258 threadId = dvmReadObjectId(&buf);
1261 threadGroupId = dvmDbgGetThreadGroup(threadId);
1276 ObjectId threadId;
1280 threadId = dvmReadObjectId(&buf);
1284 if (!dvmDbgThreadExists(threadId))
1286 if (!dvmDbgIsSuspended(threadId)) {
1288 dvmDbgGetThreadName(threadId), threadId);
1292 frameCount = dvmDbgGetThreadFrameCount(threadId);
1294 LOGV(" Request for frames: threadId=%llx start=%d length=%d [count=%d]\n",
1295 threadId, startFrame, length, frameCount);
1310 dvmDbgGetThreadFrame(threadId, i, &frameId, &loc);
1328 ObjectId threadId;
1331 threadId = dvmReadObjectId(&buf);
1333 if (!dvmDbgThreadExists(threadId))
1335 if (!dvmDbgIsSuspended(threadId)) {
1337 dvmDbgGetThreadName(threadId), threadId);
1341 frameCount = dvmDbgGetThreadFrameCount(threadId);
1355 ObjectId threadId;
1357 threadId = dvmReadObjectId(&buf);
1374 ObjectId threadId;
1377 threadId = dvmReadObjectId(&buf);
1379 suspendCount = dvmDbgGetThreadSuspendCount(threadId);
1635 ObjectId threadId = dvmReadObjectId(&buf);
1636 LOGVV(" ThreadOnly: %llx\n", threadId);
1637 pEvent->mods[idx].threadOnly.threadId = threadId;
1712 ObjectId threadId;
1715 threadId = dvmReadObjectId(&buf);
1719 threadId, dvmJdwpStepSizeStr(size),
1722 pEvent->mods[idx].step.threadId = threadId;
1795 ObjectId threadId;
1800 threadId = dvmReadObjectId(&buf);
1804 LOGV(" Req for %d slots in threadId=%llx frameId=%llx\n",
1805 slots, threadId, frameId);
1821 dvmDbgGetLocalValue(threadId, frameId, slot, reqSigByte, ptr, width);
1833 ObjectId threadId;
1838 threadId = dvmReadObjectId(&buf);
1842 LOGV(" Req to set %d slots in threadId=%llx frameId=%llx\n",
1843 slots, threadId, frameId);
1857 dvmDbgSetLocalValue(threadId, frameId, slot, sigByte, value, width);
1869 ObjectId threadId;
1875 threadId = dvmReadObjectId(&buf);
1878 if (!dvmDbgGetThisObject(threadId, frameId, &objectId))
1889 threadId, frameId, objectId, typeName, (char)objectTag);