Home | History | Annotate | Download | only in vm

Lines Matching defs:threadObj

1698 static Thread* threadObjToThread(Object* threadObj)
1703 if (thread->threadObj == threadObj)
1716 Object* threadObj;
1720 threadObj = objectIdToObject(threadId);
1721 assert(threadObj != NULL);
1726 thread = threadObjToThread(threadObj);
1764 Object* threadObj;
1768 threadObj = objectIdToObject(threadId);
1769 assert(threadObj != NULL);
1774 thread = threadObjToThread(threadObj);
1792 Object* threadObj;
1796 threadObj = objectIdToObject(threadId);
1797 assert(threadObj != NULL);
1802 thread = threadObjToThread(threadObj);
1819 Object* threadObj;
1823 threadObj = objectIdToObject(threadId);
1824 assert(threadObj != NULL);
1829 thread = threadObjToThread(threadObj);
1865 Object* threadObj;
1870 threadObj = objectIdToObject(threadId);
1871 assert(threadObj != NULL);
1873 nameStr = (StringObject*) dvmGetFieldObject(threadObj,
1880 Thread* thread = threadObjToThread(threadObj);
1896 Object* threadObj;
1899 threadObj = objectIdToObject(threadId);
1900 assert(threadObj != NULL);
1902 group = dvmGetFieldObject(threadObj, gDvm.offJavaLangThread_group);
1983 if (thread->threadObj == NULL)
1986 group = dvmGetFieldObject(thread->threadObj,
2014 if (thread->threadObj == NULL)
2017 group = dvmGetFieldObject(thread->threadObj,
2021 *ptr++ = objectToObjectId(thread->threadObj);
2050 Object* threadObj;
2054 threadObj = objectIdToObject(threadId);
2057 thread = threadObjToThread(threadObj);
2072 Object* threadObj;
2077 threadObj = objectIdToObject(threadId);
2081 thread = threadObjToThread(threadObj);
2125 return objectToObjectId(self->threadObj);
2149 Object* threadObj = objectIdToObject(threadId);
2154 thread = threadObjToThread(threadObj);
2157 ALOGW("WARNING: threadid=%llx obj=%p no match", threadId, threadObj);
2170 Object* threadObj = objectIdToObject(threadId);
2175 thread = threadObjToThread(threadObj);
2177 ALOGW("WARNING: threadid=%llx obj=%p no match", threadId, threadObj);
2493 objectToObjectId(thread->threadObj), true);
2506 objectToObjectId(thread->threadObj), false);
2563 Object* threadObj;
2567 threadObj = objectIdToObject(threadId);
2568 assert(threadObj != NULL);
2576 thread = threadObjToThread(threadObj);
2620 Object* threadObj = objectIdToObject(threadId);
2624 Thread* targetThread = threadObjToThread(threadObj);
2663 targetThread->invokeReq.thread = threadObj;