Lines Matching refs:status
203 if (boot.status[0] != 0 && boot.status[0] != 255) {
204 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
768 int status = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
773 return status;
780 prompt_and_wait(Device* device, int status) {
783 switch (status) {
828 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
830 status = apply_from_sdcard(device, &should_wipe_cache);
833 if (status == INSTALL_SUCCESS && should_wipe_cache) {
835 status = INSTALL_ERROR;
839 if (status != INSTALL_SUCCESS) {
1028 int status = INSTALL_SUCCESS;
1031 status = install_package(update_package, &should_wipe_cache, TEMPORARY_INSTALL_FILE, true);
1032 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1035 if (status != INSTALL_SUCCESS) {
1047 status = INSTALL_ERROR;
1051 status = INSTALL_ERROR;
1063 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1064 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1066 status = INSTALL_ERROR;
1069 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1074 status = INSTALL_NONE; // No command specified
1085 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
1091 if ((status != INSTALL_SUCCESS && !sideload_auto_reboot) || ui->IsTextVisible()) {
1092 Device::BuiltinAction temp = prompt_and_wait(device, status);