Home
last modified time | relevance | path

Searched refs:threadCount (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/graphics/
DTypefaceTest.java154 final int threadCount = 4; in testMultithreadCacheStressTest() local
155 final Thread[] threads = new Thread[threadCount]; in testMultithreadCacheStressTest()
156 for (int i = 0; i < threadCount; ++i) { in testMultithreadCacheStressTest()
160 for (int i = 0; i < threadCount; ++i) { in testMultithreadCacheStressTest()
164 for (int i = 0; i < threadCount; ++i) { in testMultithreadCacheStressTest()
/frameworks/libs/net/common/devicetests/com/android/testutils/
DConcurrentInterpreter.kt82 val threadCount = lines[0].size in <lambda>() constant
83 assertTrue(lines.all { it.size == threadCount }) in <lambda>()
84 val threadInstructions = (0 until threadCount).map { i -> lines.map { it[i].trim() } } in <lambda>()
85 val barrier = CyclicBarrier(threadCount) in <lambda>()
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DKernelCpuThreadReaderTest.java152 int threadCount = 0; in checkResults() local
154 assertEquals(threadIds[threadCount], threadCpuUsage.threadId); in checkResults()
155 assertEquals(threadNames[threadCount], threadCpuUsage.threadName); in checkResults()
159 cpuTimes[threadCount][i] * 10, in checkResults()
165 threadCount++; in checkResults()
168 assertEquals(threadCount, threadIds.length); in checkResults()
/frameworks/native/cmds/lshal/
DTableEntry.h80 uint32_t threadCount{0};
101 if (threadCount == 0) { in getThreadUsage()
105 return std::to_string(threadUsage) + "/" + std::to_string(threadCount); in getThreadUsage()
DTableEntry.cpp191 threadCount == other.threadCount && serverCmdline == other.serverCmdline && in operator ==()
DListCommand.h46 uint32_t threadCount; // number of threads total member
Dtest.cpp306 info.threadCount = 20 + serverId; in getPidInfoFromId()
463 .threadCount = in TEST_F()
464 transport == Transport::HWBINDER ? getPidInfoFromId(id).threadCount : 0, in TEST_F()
DListCommand.cpp286 pidInfo->threadCount++; in getPidInfo()
744 entry->threadCount = pidInfo->threadCount; in fetchBinderizedEntry()
/frameworks/base/tests/JankBench/app/src/main/jni/
DWorkerPool.cpp157 bool WorkerPool::init(int threadCount) { in init() argument
159 if (threadCount > 0) { in init()
160 cpu = threadCount; in init()
DWorkerPool.h32 bool init(int threadCount = -1);
/frameworks/base/libs/hwui/tests/unit/
DCommonPoolTests.cpp41 TEST(DISABLED_CommonPool, threadCount) { in TEST() argument