/art/libartservice/service/javatests/com/android/server/art/ |
D | DexoptHelperTest.java | 112 private CancellationSignal mCancellationSignal; field in DexoptHelperTest 126 mCancellationSignal = new CancellationSignal(); in setUp() 180 mSnapshot, mRequestedPackages, mParams, mCancellationSignal, mExecutor); in testDexopt() 243 mSnapshot, mRequestedPackages, mParams, mCancellationSignal, mExecutor); in testDexoptNoDependencies() 266 mSnapshot, mRequestedPackages, mParams, mCancellationSignal, mExecutor); in testDexoptPrimaryOnly() 295 mSnapshot, mRequestedPackages, mParams, mCancellationSignal, mExecutor); in testDexoptPrimaryOnlyNoDependencies() 311 mCancellationSignal.cancel(); in testDexoptCancelledBetweenDex2oatInvocations() 316 mSnapshot, mRequestedPackages, mParams, mCancellationSignal, mExecutor); in testDexoptCancelledBetweenDex2oatInvocations() 371 mSnapshot, mRequestedPackages, mParams, mCancellationSignal, dexoptExecutor); in testDexoptCancelledDuringDex2oatInvocationsMultiThreaded() 380 mCancellationSignal.cancel(); in testDexoptCancelledDuringDex2oatInvocationsMultiThreaded() [all …]
|
D | PrimaryDexopterTest.java | 154 new PrimaryDexopter(mInjector, mPkgState, mPkg, mDexoptParams, mCancellationSignal); in setUp() 412 new PrimaryDexopter(mInjector, mPkgState, mPkg, mDexoptParams, mCancellationSignal); in testDexoptMergesProfilesForceMerge() 678 mCancellationSignal.cancel(); in testDexoptCancelledBeforeDexopt() 735 mCancellationSignal.cancel(); in testDexoptCancelledDuringDexopt() 759 new PrimaryDexopter(mInjector, mPkgState, mPkg, mDexoptParams, mCancellationSignal); in testDexoptBaseApk() 781 new PrimaryDexopter(mInjector, mPkgState, mPkg, mDexoptParams, mCancellationSignal); in testDexoptSplitApk() 804 new PrimaryDexopter(mInjector, mPkgState, mPkg, mDexoptParams, mCancellationSignal); in testDexoptStorageLow() 842 new PrimaryDexopter(mInjector, mPkgState, mPkg, mDexoptParams, mCancellationSignal); in testDexoptDexStatus() 870 new PrimaryDexopter(mInjector, mPkgState, mPkg, mDexoptParams, mCancellationSignal); in testDexoptPreRebootDexNotFound() 883 new PrimaryDexopter(mInjector, mPkgState, mPkg, mDexoptParams, mCancellationSignal); in testDexoptPreRebootSomeDexNotFound() [all …]
|
D | PrimaryDexopterTestBase.java | 72 protected CancellationSignal mCancellationSignal; field in PrimaryDexopterTestBase 82 mCancellationSignal = new CancellationSignal(); in setUp()
|
D | SecondaryDexopterTest.java | 113 private CancellationSignal mCancellationSignal; field in SecondaryDexopterTest 123 mCancellationSignal = new CancellationSignal(); in setUp() 171 mInjector, mPkgState, mPkg, mDexoptParams, mCancellationSignal); in setUp()
|
D | PrimaryDexopterParameterizedTest.java | 290 new PrimaryDexopter(mInjector, mPkgState, mPkg, mDexoptParams, mCancellationSignal); in setUp()
|
/art/libartservice/service/java/com/android/server/art/ |
D | PreRebootDexoptJob.java | 73 @GuardedBy("this") @Nullable private CancellationSignal mCancellationSignal = null; field in PreRebootDexoptJob 273 var cancellationSignal = mCancellationSignal = new CancellationSignal(); in startLocked() 290 mCancellationSignal = null; in startLocked() 312 if (!mCancellationSignal.isCanceled()) { in cancelGivenLocked() 313 mCancellationSignal.cancel(); in cancelGivenLocked() 338 if (!mCancellationSignal.isCanceled()) { in cancelAnyLocked() 339 mCancellationSignal.cancel(); in cancelAnyLocked()
|
D | BackgroundDexoptJob.java | 75 @GuardedBy("this") @Nullable private CancellationSignal mCancellationSignal = null; field in BackgroundDexoptJob 180 mCancellationSignal = new CancellationSignal(); in start() 184 return run(mCancellationSignal); in start() 191 mCancellationSignal = null; in start() 204 mCancellationSignal.cancel(); in cancel()
|
D | Dexopter.java | 79 @NonNull protected final CancellationSignal mCancellationSignal; field in Dexopter 88 mCancellationSignal = cancellationSignal; in Dexopter() 262 mCancellationSignal.setOnCancelListener(() -> { in dexopt() 308 mCancellationSignal.setOnCancelListener(null); in dexopt()
|