Home
last modified time | relevance | path

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

/bootable/recovery/updater_sample/tests/src/com/example/android/systemupdatersample/
DUpdateManagerTest.java66 private UpdateEngine mUpdateEngine; field in UpdateManagerTest
76 mSubject = new UpdateManager(mUpdateEngine, null); in setUp()
86 verify(mUpdateEngine).applyPayload( in applyUpdate_appliesPayloadToUpdateEngine()
101 when(mUpdateEngine.bind(any(UpdateEngineCallback.class))).thenAnswer(answer -> { in stateIsRunningAndEngineStatusIsIdle_reApplyLastUpdate()
117 verify(mUpdateEngine, times(2)).applyPayload( in stateIsRunningAndEngineStatusIsIdle_reApplyLastUpdate()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/
DUpdateManager.java55 private final UpdateEngine mUpdateEngine; field in UpdateManager
92 this.mUpdateEngine = updateEngine; in UpdateManager()
103 this.mUpdateEngine.bind(mUpdateEngineCallback); in bind()
110 this.mUpdateEngine.unbind(); in unbind()
210 mUpdateEngine.cancel(); in suspend()
266 mUpdateEngine.cancel(); in cancelRunningUpdate()
275 mUpdateEngine.resetStatus(); in resetUpdate()
352 mUpdateEngine.applyPayload( in updateEngineApplyPayload()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/services/
DPrepareUpdateService.java123 private final UpdateEngine mUpdateEngine = new UpdateEngine(); field in PrepareUpdateService
225 return mUpdateEngine.verifyPayloadMetadata(metadataPath.toAbsolutePath().toString()); in verifyPayloadMetadata()