Home
last modified time | relevance | path

Searched refs:needsCheckpoint (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DStagingManager.java215 boolean needsCheckpoint) { in abortCheckpoint() argument
218 if (supportsCheckpoint && needsCheckpoint) { in abortCheckpoint()
372 boolean needsCheckpoint) throws PackageManagerException { in resumeSession() argument
384 if (supportsCheckpoint && !needsCheckpoint) { in resumeSession()
427 boolean supportsCheckpoint, boolean needsCheckpoint) { in onInstallationFailure() argument
430 + " Error: " + e.getMessage(), supportsCheckpoint, needsCheckpoint); in onInstallationFailure()
655 boolean needsCheckpoint = false; in restoreSessions()
659 needsCheckpoint = InstallLocationUtils.getStorageManager().needsCheckpoint(); in restoreSessions()
727 needsCheckpoint); in restoreSessions()
750 resumeSession(session, supportsCheckpoint, needsCheckpoint); in restoreSessions()
[all …]
/aosp14/frameworks/base/core/java/android/os/storage/
H A DIStorageManager.aidl165 boolean needsCheckpoint() = 86; in needsCheckpoint() method
/aosp14/frameworks/base/services/core/java/com/android/server/
H A DStorageManagerService.java2533 if (!needsCheckpoint() || !supportsBlockCheckpoint()) { in fstrim()
2581 if (!needsCheckpoint() || !supportsBlockCheckpoint()) { in runIdleMaint()
2790 if (!needsCheckpoint() || !supportsBlockCheckpoint()) { in runSmartIdleMaint()
3106 public boolean needsCheckpoint() throws RemoteException { in needsCheckpoint() method in StorageManagerService
3109 return mVold.needsCheckpoint(); in needsCheckpoint()
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/
H A DStagingManagerTest.java107 when(mStorageManager.needsCheckpoint()).thenReturn(true); in setUp()
/aosp14/frameworks/base/core/java/android/os/
H A DRecoverySystem.java1202 checkpointing = vold.needsCheckpoint(); in rebootPromptAndWipeUserData()