Home
last modified time | relevance | path

Searched refs:RUNNING (Results 1 – 4 of 4) sorted by relevance

/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/
DUpdaterState.java33 public static final int RUNNING = 2; field in UpdaterState
55 .put(IDLE, ImmutableSet.of(IDLE, ERROR, RUNNING))
57 .put(RUNNING, ImmutableSet.of(
59 .put(PAUSED, ImmutableSet.of(ERROR, RUNNING, IDLE))
DUpdateManager.java218 setUpdaterState(UpdaterState.RUNNING); in resume()
287 setUpdaterState(UpdaterState.RUNNING); in applyUpdate()
449 case UpdaterState.RUNNING: in synchronizeUpdaterStateWithUpdateEngineStatus()
/bootable/recovery/updater_sample/tests/src/com/example/android/systemupdatersample/
DUpdateManagerTest.java116 assertEquals(mSubject.getUpdaterState(), UpdaterState.RUNNING); in stateIsRunningAndEngineStatusIsIdle_reApplyLastUpdate()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/ui/
DMainActivity.java261 } else if (state == UpdaterState.RUNNING) { in onUpdaterStateChange()