Searched defs:status (Results 1 - 6 of 6) sorted by relevance

/bootable/recovery/
H A Dbootloader.h35 * The status field is written by the bootloader after the
45 * the UI will add a simple indicator of that status.
49 char status[32]; member in struct:bootloader_message
H A Dadb_install.cpp97 int status; local
101 if (waitpid(child, &status, WNOHANG) != 0) {
131 waitpid(child, &status, 0);
134 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
135 if (WEXITSTATUS(status) == 3) {
137 } else if (!WIFSIGNALED(status)) {
138 ui->Print("\n(adbd status %d)\n", WEXITSTATUS(status));
H A Dinstall.cpp174 int status; local
175 waitpid(pid, &status, 0);
176 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
177 LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status));
H A Droots.cpp158 int status; local
164 waitpid(child, &status, 0);
165 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
166 LOGE("%s failed with status %d\n", path, WEXITSTATUS(status));
168 return WEXITSTATUS(status);
H A Drecovery.cpp195 if (boot.status[0] != 0 && boot.status[0] != 255) {
196 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
739 prompt_and_wait(Device* device, int status) { argument
744 switch (status) {
798 int status = install_package(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache, local
804 if (status == INSTALL_SUCCESS && wipe_cache) {
813 if (status >
1011 int status = INSTALL_SUCCESS; local
[all...]
/bootable/recovery/updater/
H A Dinstall.c251 int status; local
257 waitpid(child, &status, 0);
258 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
259 printf("%s failed with status %d\n", path, WEXITSTATUS(status));
261 return WEXITSTATUS(status);
336 int status = make_ext4fs(location, atoll(fs_size), mount_point, sehandle); local
337 if (status != 0) {
339 name, status, locatio
353 int status = exec_cmd(f2fs_path, (char* const*)f2fs_argv); local
1303 int status; local
[all...]

Completed in 294 milliseconds