Home
last modified time | relevance | path

Searched defs:future (Results 1 – 5 of 5) sorted by relevance

/art/libartservice/service/javatests/com/android/server/art/
DPreRebootDexoptJobTest.java162 CompletableFuture<Void> future = mPreRebootDexoptJob.onUpdateReadyStartNow( in testSyncStartDisabled() local
185 CompletableFuture<Void> future = mPreRebootDexoptJob.onUpdateReadyStartNow( in testSyncStartNotEnabled() local
264 CompletableFuture<Void> future = mPreRebootDexoptJob.onUpdateReadyStartNow( in testSyncStart() local
303 CompletableFuture<Void> future = mPreRebootDexoptJob.onUpdateReadyStartNow( in testSyncCancel() local
475 CompletableFuture<Void> future = mPreRebootDexoptJob.onUpdateReadyStartNow( in testRace3() local
DBackgroundDexoptJobTest.java202 Future<Result> future = mBackgroundDexoptJob.start(); in testCancel() local
DDexoptHelperTest.java369 Future<DexoptResult> future = ForkJoinPool.commonPool().submit(() -> { in testDexoptCancelledDuringDex2oatInvocationsMultiThreaded() local
422 Future<DexoptResult> future = ForkJoinPool.commonPool().submit(() -> { in testDexoptCancelledDuringDex2oatInvocationsOnCurrentThread() local
/art/libartservice/service/java/com/android/server/art/
DArtShellCommand.java408 CompletableFuture<BackgroundDexoptJob.Result> future = in handleBgDexoptJob() local
768 CompletableFuture<Void> future = job.onUpdateReadyStartNow(otaSlot, mapSnapshotsForOta); in handleRunPrDexoptJob() local
DUtils.java278 public static <T> T getFuture(Future<T> future) { in getFuture()