Lines Matching refs:status
438 if (auto status = updater_runtime->RunProgram(mke2fs_args, true); status != 0) { in FormatFn() local
439 LOG(ERROR) << name << ": mke2fs failed (" << status << ") on " << location; in FormatFn()
443 if (auto status = updater_runtime->RunProgram( in FormatFn() local
445 status != 0) { in FormatFn()
446 LOG(ERROR) << name << ": e2fsdroid failed (" << status << ") on " << location; in FormatFn()
463 if (auto status = updater_runtime->RunProgram(f2fs_args, true); status != 0) { in FormatFn() local
464 LOG(ERROR) << name << ": make_f2fs failed (" << status << ") on " << location; in FormatFn()
468 if (auto status = updater_runtime->RunProgram( in FormatFn() local
470 status != 0) { in FormatFn()
471 LOG(ERROR) << name << ": sload_f2fs failed (" << status << ") on " << location; in FormatFn()
649 auto status = updater_runtime->RunProgram(args, false); in RunProgramFn() local
650 return StringValue(std::to_string(status)); in RunProgramFn()
829 int status = updater_runtime->WipeBlockDevice(filename, len); in WipeBlockDeviceFn() local
830 return StringValue(status == 0 ? "t" : ""); in WipeBlockDeviceFn()