/bootable/recovery/ |
D | recovery.c | 158 if (boot.status[0] != 0 && boot.status[0] != 255) { in get_args() 159 LOGI("Boot status: %.*s\n", sizeof(boot.status), boot.status); in get_args() 350 int status = install_package(SDCARD_PACKAGE_FILE); in prompt_and_wait() local 351 if (status != INSTALL_SUCCESS) { in prompt_and_wait() 430 int status = INSTALL_SUCCESS; in main() local 433 status = install_package(update_package); in main() 434 if (status != INSTALL_SUCCESS) ui_print("Installation aborted.\n"); in main() 436 if (wipe_data && erase_root("DATA:")) status = INSTALL_ERROR; in main() 437 if (wipe_cache && erase_root("CACHE:")) status = INSTALL_ERROR; in main() 438 if (status != INSTALL_SUCCESS) ui_print("Data wipe failed.\n"); in main() [all …]
|
D | install.c | 222 int status; in try_update_binary() local 223 waitpid(pid, &status, 0); in try_update_binary() 224 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { in try_update_binary() 225 LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status)); in try_update_binary() 374 int status = handle_update_package(path, &zip, loadedKeys, numKeys); in install_package() local 377 return status; in install_package()
|
D | bootloader.h | 40 char status[32]; member
|
/bootable/bootloader/legacy/usbloader/ |
D | usbloader.c | 249 static void usb_rx_cmd_complete(struct usb_request *req, unsigned actual, int status); 250 static void usb_rx_data_complete(struct usb_request *req, unsigned actual, int status); 270 static void tx_status(const char *status) in tx_status() argument 273 int len = strlen(status); in tx_status() 275 memcpy(req->buf, status, len); in tx_status() 281 static void usb_rx_data_complete(struct usb_request *req, unsigned actual, int status) in usb_rx_data_complete() argument 283 if(status != 0) return; in usb_rx_data_complete() 342 static void usb_rx_cmd_complete(struct usb_request *req, unsigned actual, int status) in usb_rx_cmd_complete() argument 344 if(status != 0) return; in usb_rx_cmd_complete() 390 char status[16]; in usb_rx_cmd_complete() local [all …]
|
/bootable/bootloader/legacy/nandwrite/ |
D | jtag.c | 47 static void jtag_msg(unsigned status, const char *msg) in jtag_msg() argument 51 _jtag_msg = status; in jtag_msg()
|
/bootable/bootloader/legacy/arch_msm7k/ |
D | hsusb.c | 146 int status; in handle_ept_complete() local 160 status = -1; in handle_ept_complete() 165 status = 0; in handle_ept_complete() 168 req->complete(req, actual, status); in handle_ept_complete() 199 static void ep0in_complete(struct usb_request *req, unsigned actual, int status) in ep0in_complete() argument 201 DBG("ep0in_complete %p %d %d\n", req, actual, status); in ep0in_complete() 202 if(status == 0) { in ep0in_complete()
|
D | smem.c | 48 unsigned status; member
|
D | nand.c | 43 volatile unsigned status; member 51 ch->status = DMOV_STATUS(id); in dmov_prep_ch() 75 while(!(readl(ch.status) & DMOV_STATUS_RSLT_VALID)) ; in dmov_exec_cmdptr() 77 n = readl(ch.status); in dmov_exec_cmdptr() 88 n = readl(ch.status); in dmov_exec_cmdptr()
|
/bootable/bootloader/legacy/include/boot/ |
D | usb.h | 74 void (*complete)(struct usb_request *req, unsigned actual, int status);
|
/bootable/diskinstaller/libdiskconfig/ |
D | config_mbr.c | 31 cfg_pentry(struct pc_partition *pentry, uint8_t status, uint8_t type, in cfg_pentry() argument 45 pentry->status = status; in cfg_pentry() 51 pentry->status, pentry->type, pentry->start_lba, pentry->len_lba); in cfg_pentry()
|
D | diskconfig.h | 59 uint8_t status; /* byte 0 */ member
|
/bootable/bootloader/legacy/ |
D | fastboot_protocol.txt | 88 Client: "INFOerasing flash" indicate status / progress
|