Home
last modified time | relevance | path

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

/frameworks/base/services/backup/java/com/android/server/backup/
DOperationStorage.java47 OpState.ACKNOWLEDGED,
54 int ACKNOWLEDGED = 1; field
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/backup/internal/
DLifecycleOperationStorageTest.java83 mOpStorage.registerOperation(TOKEN_2, OpState.ACKNOWLEDGED, mCallback, OpType.BACKUP_WAIT); in testRegisterOperation_multipleOperations()
88 mOpStorage.operationTokensForOpState(OpState.ACKNOWLEDGED); in testRegisterOperation_multipleOperations()
166 mOpStorage.registerOperation(TOKEN_1, OpState.ACKNOWLEDGED, mCallback, OpType.RESTORE_WAIT); in testIsBackupOperationInProgress()
187 assertThat(mOpStorage.operationTokensForOpState(OpState.ACKNOWLEDGED)).isNotEmpty(); in testOnOperationComplete_pendingAdvancesState_invokesCallback()
/frameworks/base/services/backup/java/com/android/server/backup/internal/
DLifecycleOperationStorage.java251 return finalState == OpState.ACKNOWLEDGED; in waitUntilOperationComplete()
279 } else if (op.state == OpState.ACKNOWLEDGED) { in onOperationComplete()
289 op.state = OpState.ACKNOWLEDGED; in onOperationComplete()
327 if (state == OpState.ACKNOWLEDGED) { in cancelOperation()