Home
last modified time | relevance | path

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

/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/util/
DUpdateEngineErrorCodes.java31 public final class UpdateEngineErrorCodes { class
87 private UpdateEngineErrorCodes() {} in UpdateEngineErrorCodes() method in UpdateEngineErrorCodes
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/
DUpdateManager.java26 import com.example.android.systemupdatersample.util.UpdateEngineErrorCodes;
59 private AtomicInteger mEngineErrorCode = new AtomicInteger(UpdateEngineErrorCodes.UNKNOWN);
286 mEngineErrorCode.set(UpdateEngineErrorCodes.UNKNOWN); in applyUpdate()
512 || errorCode == UpdateEngineErrorCodes.UPDATED_BUT_NOT_ACTIVE) { in onPayloadApplicationComplete()
516 } else if (errorCode != UpdateEngineErrorCodes.USER_CANCELLED) { in onPayloadApplicationComplete()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/ui/
DMainActivity.java39 import com.example.android.systemupdatersample.util.UpdateEngineErrorCodes;
294 final String completionState = UpdateEngineErrorCodes.isUpdateSucceeded(errorCode) in onEnginePayloadApplicationComplete()
299 + UpdateEngineErrorCodes.getCodeName(errorCode) + "/" + errorCode in onEnginePayloadApplicationComplete()
401 String errorText = UpdateEngineErrorCodes.getCodeName(errorCode); in setUiEngineErrorCode()