Searched refs:exit_code (Results 1 – 8 of 8) sorted by relevance
/device/google/cuttlefish/host/commands/run_cvd/ |
D | boot_state_machine.cc | 58 RunnerExitCodes exit_code; in DaemonizeLauncher() local 59 auto bytes_read = read_end->Read(&exit_code, sizeof(exit_code)); in DaemonizeLauncher() 60 if (bytes_read != sizeof(exit_code)) { in DaemonizeLauncher() 62 << " bytes only instead of the expected " << sizeof(exit_code); in DaemonizeLauncher() 63 exit_code = RunnerExitCodes::kPipeIOError; in DaemonizeLauncher() 64 } else if (exit_code == RunnerExitCodes::kSuccess) { in DaemonizeLauncher() 70 } else if (exit_code == RunnerExitCodes::kVirtualDeviceBootFailed) { in DaemonizeLauncher() 80 LOG(ERROR) << "Unexpected exit code: " << exit_code; in DaemonizeLauncher() 83 if (exit_code == RunnerExitCodes::kSuccess) { in DaemonizeLauncher() 89 std::exit(exit_code); in DaemonizeLauncher() [all …]
|
/device/google/cuttlefish/host/libs/avb/ |
D | avb.cpp | 81 int exit_code = command.Start().Wait(); in AddHashFooter() local 82 CF_EXPECTF(exit_code == 0, "Failure running {} {}. Exited with status {}", in AddHashFooter() 83 command.Executable(), kAddHashFooter, exit_code); in AddHashFooter() 103 int exit_code = command.Start().Wait(); in WriteInfoImage() local 104 CF_EXPECTF(exit_code == 0, "Failure running {} {}. Exited with status {}", in WriteInfoImage() 105 command.Executable(), kInfoImage, exit_code); in WriteInfoImage() 147 int exit_code = command.Start().Wait(); in MakeVbMetaImage() local 148 CF_EXPECTF(exit_code == 0, "Failure running {} {}. Exited with status {}", in MakeVbMetaImage() 149 command.Executable(), kMakeVbmetaImage, exit_code); in MakeVbMetaImage()
|
/device/google/cuttlefish/host/commands/stop/ |
D | main.cc | 102 auto exit_code = 1; // Having to fallback is an error in FallBackStop() local 111 exit_code |= 4; in FallBackStop() 115 return exit_code; in FallBackStop() 206 int exit_code = 0; in StopCvdMain() local 242 exit_code |= exit_status.get(); in StopCvdMain() 244 return exit_code; in StopCvdMain()
|
/device/google/cuttlefish/host/commands/assemble_cvd/ |
D | vendor_dlkm_utils.cc | 288 const auto exit_code = cmd.Start().Wait(); in GenerateFileContexts() local 289 return exit_code == 0; in GenerateFileContexts() 314 auto exit_code = avb_cmd.Start().Wait(); in AddVbmetaFooter() local 315 if (exit_code != 0) { in AddVbmetaFooter() 387 int exit_code = mkfs_cmd.Start().Wait(); in BuildDlkmImage() local 388 if (exit_code != 0) { in BuildDlkmImage() 404 const auto exit_code = lpadd.Start().Wait(); in RepackSuperWithPartition() local 405 return exit_code == 0; in RepackSuperWithPartition()
|
/device/google/cuttlefish/host/libs/vm_manager/ |
D | crosvm_builder.cpp | 47 int exit_code) { in ApplyProcessRestarter() argument 49 command_.AddParameter("-when_exited_with_code=", exit_code); in ApplyProcessRestarter()
|
D | crosvm_builder.h | 35 int exit_code);
|
/device/google/cuttlefish_vmm/qemu/x86_64-linux-gnu/usr/share/qemu/ |
D | trace-events-all | 5604 ram_load_complete(int ret, uint64_t seq_iter) "exit_code %d seq iteration %" PRIu64
|
/device/google/cuttlefish_vmm/qemu/aarch64-linux-gnu/usr/share/qemu/ |
D | trace-events-all | 5604 ram_load_complete(int ret, uint64_t seq_iter) "exit_code %d seq iteration %" PRIu64
|