Searched refs:threadCount (Results 1 – 5 of 5) sorted by relevance
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/ |
D | ObjectTest.java | 245 final int threadCount = 20; in test_notify() local 246 for (int i = 0; i < threadCount; ++i) { in test_notify() 256 if (ready == threadCount) { in test_notify() 263 + ready + ")", ready == threadCount); in test_notify() 267 for (int i = 1; i <= threadCount; ++i) { in test_notify() 328 final int threadCount = 20; in test_notifyAll() local 329 for (int i = 0; i < threadCount; ++i) { in test_notifyAll() 341 if (ready == threadCount) { in test_notifyAll() 348 + ready + ")", ready == threadCount); in test_notifyAll() 358 + status + ")", status == threadCount); in test_notifyAll()
|
D | ThreadGroupTest.java | 1796 final int threadCount) { in populateGroupsWithThreads() argument 1798 populateGroupsWithThreads(aGroup, threadCount, result); in populateGroupsWithThreads() 1804 final int threadCount, final Vector<MyThread> allCreated) { in populateGroupsWithThreads() argument 1805 for (int i = 0; i < threadCount; i++) { in populateGroupsWithThreads() 1807 final String name = "(MyThread)N =" + iClone + "/" + threadCount in populateGroupsWithThreads() 1817 populateGroupsWithThreads(element, threadCount, allCreated); in populateGroupsWithThreads()
|
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/ |
D | ThreadLocalTest.java | 94 final int threadCount = 10; in testGenericITL() local 95 final int x[] = new int[threadCount]; in testGenericITL() 100 for(int i = 0; i < threadCount; i++) { in testGenericITL()
|
/dalvik/vm/ |
D | Ddm.c | 481 int threadCount = 0; in dvmDdmGenerateThreadStats() local 483 threadCount++; in dvmDdmGenerateThreadStats() 490 int bufLen = kHeaderLen + threadCount * kBytesPerEntry; in dvmDdmGenerateThreadStats() 496 set2BE(buf+2, (u2) threadCount); in dvmDdmGenerateThreadStats()
|
/dalvik/vm/jdwp/ |
D | JdwpHandler.c | 274 u4 threadCount; in handleVM_AllThreads() local 279 dvmDbgGetAllThreads(&pThreadIds, &threadCount); in handleVM_AllThreads() 281 expandBufAdd4BE(pReply, threadCount); in handleVM_AllThreads() 284 for (i = 0; i < (int) threadCount; i++) { in handleVM_AllThreads() 1357 u4 threadCount; in handleTGR_Children() local 1366 dvmDbgGetThreadGroupThreads(threadGroupId, &pThreadIds, &threadCount); in handleTGR_Children() 1368 expandBufAdd4BE(pReply, threadCount); in handleTGR_Children() 1371 for (i = 0; i < (int) threadCount; i++) in handleTGR_Children()
|