Home
last modified time | relevance | path

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

/frameworks/base/tests/JankBench/app/src/main/jni/
DBench.cpp55 void Bench::testWork(void *usr, uint32_t idx) in testWork() function in Bench
133 mWorkers.launchWork(testWork, this, threads); in runPowerManagementTest()
198 mWorkers.launchWork(testWork, this, 0); in runCPUHeatSoak()
346 mWorkers.launchWork(testWork, this, 0); in runGFlopsTest()
DBench.h81 static void testWork(void *usr, uint32_t idx);
/frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/
DWorkContinuationImplTest.java129 OneTimeWorkRequest testWork = createTestWorker(); in testContinuation_noParent() local
131 new WorkContinuationImpl(mWorkManagerImpl, Collections.singletonList(testWork)); in testContinuation_noParent()
135 assertThat(continuation.getIds().get(0), is(testWork.getStringId())); in testContinuation_noParent()
141 OneTimeWorkRequest testWork = createTestWorker(); in testContinuation_singleChain() local
144 new WorkContinuationImpl(mWorkManagerImpl, Collections.singletonList(testWork)); in testContinuation_singleChain()
154 containsInAnyOrder(dependentWork.getStringId(), testWork.getStringId())); in testContinuation_singleChain()