Home | History | Annotate | Download | only in vm

Lines Matching refs:threadObj

1738 static Thread* threadObjToThread(Object* threadObj)
1743 if (thread->threadObj == threadObj)
1756 Object* threadObj;
1760 threadObj = objectIdToObject(threadId);
1761 assert(threadObj != NULL);
1766 thread = threadObjToThread(threadObj);
1803 Object* threadObj;
1807 threadObj = objectIdToObject(threadId);
1808 assert(threadObj != NULL);
1813 thread = threadObjToThread(threadObj);
1831 Object* threadObj;
1835 threadObj = objectIdToObject(threadId);
1836 assert(threadObj != NULL);
1841 thread = threadObjToThread(threadObj);
1858 Object* threadObj;
1862 threadObj = objectIdToObject(threadId);
1863 assert(threadObj != NULL);
1868 thread = threadObjToThread(threadObj);
1889 Object* threadObj;
1892 threadObj = objectIdToObject(threadId);
1893 assert(threadObj != NULL);
1896 thread = threadObjToThread(threadObj);
1930 Object* threadObj;
1935 threadObj = objectIdToObject(threadId);
1936 assert(threadObj != NULL);
1938 nameStr = (StringObject*) dvmGetFieldObject(threadObj,
1945 Thread* thread = threadObjToThread(threadObj);
1961 Object* threadObj;
1964 threadObj = objectIdToObject(threadId);
1965 assert(threadObj != NULL);
1967 group = dvmGetFieldObject(threadObj, gDvm.offJavaLangThread_group);
2068 if (thread->threadObj == NULL)
2071 group = dvmGetFieldObject(thread->threadObj, groupField->byteOffset);
2098 if (thread->threadObj == NULL)
2101 group = dvmGetFieldObject(thread->threadObj,groupField->byteOffset);
2104 *ptr++ = objectToObjectId(thread->threadObj);
2133 Object* threadObj;
2138 threadObj = objectIdToObject(threadId);
2142 thread = threadObjToThread(threadObj);
2165 Object* threadObj;
2170 threadObj = objectIdToObject(threadId);
2174 thread = threadObjToThread(threadObj);
2218 return objectToObjectId(self->threadObj);
2242 Object* threadObj = objectIdToObject(threadId);
2247 thread = threadObjToThread(threadObj);
2250 LOGW("WARNING: threadid=%llx obj=%p no match\n", threadId, threadObj);
2263 Object* threadObj = objectIdToObject(threadId);
2268 thread = threadObjToThread(threadObj);
2270 LOGW("WARNING: threadid=%llx obj=%p no match\n", threadId, threadObj);
2588 objectToObjectId(thread->threadObj), true);
2601 objectToObjectId(thread->threadObj), false);
2659 Object* threadObj;
2663 threadObj = objectIdToObject(threadId);
2664 assert(threadObj != NULL);
2672 thread = threadObjToThread(threadObj);
2716 Object* threadObj = objectIdToObject(threadId);
2722 targetThread = threadObjToThread(threadObj);
2764 targetThread->invokeReq.thread = threadObj;