Home
last modified time | relevance | path

Searched refs:threadGroupId (Results 1 – 3 of 3) sorted by relevance

/dalvik/vm/
DDebugger.h228 char* dvmDbgGetThreadGroupName(ObjectId threadGroupId);
229 ObjectId dvmDbgGetThreadGroupParent(ObjectId threadGroupId);
239 void dvmDbgGetThreadGroupThreads(ObjectId threadGroupId,
DDebugger.cpp1912 char* dvmDbgGetThreadGroupName(ObjectId threadGroupId) in dvmDbgGetThreadGroupName() argument
1917 threadGroup = objectIdToObject(threadGroupId); in dvmDbgGetThreadGroupName()
1930 ObjectId dvmDbgGetThreadGroupParent(ObjectId threadGroupId) in dvmDbgGetThreadGroupParent() argument
1935 threadGroup = objectIdToObject(threadGroupId); in dvmDbgGetThreadGroupParent()
1953 void dvmDbgGetThreadGroupThreads(ObjectId threadGroupId, in dvmDbgGetThreadGroupThreads() argument
1960 if (threadGroupId != THREAD_GROUP_ALL) { in dvmDbgGetThreadGroupThreads()
1961 targetThreadGroup = objectIdToObject(threadGroupId); in dvmDbgGetThreadGroupThreads()
1988 if (threadGroupId == THREAD_GROUP_ALL || group == targetThreadGroup) in dvmDbgGetThreadGroupThreads()
2019 if (threadGroupId == THREAD_GROUP_ALL || group == targetThreadGroup) in dvmDbgGetThreadGroupThreads()
/dalvik/vm/jdwp/
DJdwpHandler.cpp293 ObjectId threadGroupId = dvmDbgGetSystemThreadGroupId(); in handleVM_TopLevelThreadGroups() local
294 expandBufAddObjectId(pReply, threadGroupId); in handleVM_TopLevelThreadGroups()
1090 ObjectId threadGroupId = dvmDbgGetThreadGroup(threadId); in handleTR_ThreadGroup() local
1091 expandBufAddObjectId(pReply, threadGroupId); in handleTR_ThreadGroup()
1212 ObjectId threadGroupId = dvmReadObjectId(&buf); in handleTGR_Name() local
1213 ALOGV(" Req for name of threadGroupId=0x%llx", threadGroupId); in handleTGR_Name()
1215 char* name = dvmDbgGetThreadGroupName(threadGroupId); in handleTGR_Name()
1250 ObjectId threadGroupId = dvmReadObjectId(&buf); in handleTGR_Children() local
1251 ALOGV(" Req for threads in threadGroupId=0x%llx", threadGroupId); in handleTGR_Children()
1255 dvmDbgGetThreadGroupThreads(threadGroupId, &pThreadIds, &threadCount); in handleTGR_Children()
[all …]