Home
last modified time | relevance | path

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

/bootable/recovery/updater_sample/
DREADME.md62 app doesn't receive onStatusUpdate and onPayloadApplicationCompleted notifications.
64 only onStatusUpdate is called, but status becomes IDLE in most cases.
75 matches the update_engine's status (as onStatusUpdate is guaranteed to be called).
121 initialized, it's guaranteed to invoke callback onStatusUpdate.
143 ### Callback: onStatusUpdate
149 `onStatusUpdate` is always called when app binds to update_engine,
223 - [x] Add smart update completion detection using onStatusUpdate
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/
DUpdateManager.java485 private void onStatusUpdate(int status, float progress) { in onStatusUpdate() method in UpdateManager
529 public void onStatusUpdate(int status, float percent) { in onStatusUpdate() method in UpdateManager.UpdateEngineCallbackImpl
530 UpdateManager.this.onStatusUpdate(status, percent); in onStatusUpdate()
/bootable/recovery/updater_sample/tests/src/com/example/android/systemupdatersample/
DUpdateManagerTest.java105 callback.onStatusUpdate( in stateIsRunningAndEngineStatusIsIdle_reApplyLastUpdate()