Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/DynamicSystemInstallationService/src/com/android/dynsystem/
H A DDynamicSystemInstallationService.java254 postStatus(STATUS_IN_PROGRESS, CAUSE_NOT_SPECIFIED, null); in onProgressUpdate()
261 postStatus(STATUS_READY, CAUSE_INSTALL_COMPLETED, null); in onResult()
281 postStatus(STATUS_NOT_STARTED, CAUSE_INSTALL_CANCELLED, null); in onResult()
286 postStatus(STATUS_NOT_STARTED, CAUSE_ERROR_IO, detail); in onResult()
291 postStatus(STATUS_NOT_STARTED, CAUSE_ERROR_INVALID_URL, detail); in onResult()
295 postStatus(STATUS_NOT_STARTED, CAUSE_ERROR_EXCEPTION, detail); in onResult()
384 postStatus(STATUS_NOT_STARTED, CAUSE_INSTALL_CANCELLED, null); in executeDiscardCommand()
417 postStatus(STATUS_NOT_STARTED, CAUSE_ERROR_EXCEPTION, null); in executeRebootToDynSystemCommand()
490 postStatus(STATUS_NOT_STARTED, CAUSE_INSTALL_CANCELLED, null); in executeNotifyKeyguardDismissed()
631 private void postStatus(int status, int cause, Throwable detail) { in postStatus() method in DynamicSystemInstallationService