Lines Matching refs:status
432 if (auto status = updater_runtime->RunProgram(mke2fs_args, true); status != 0) { in FormatFn() local
433 LOG(ERROR) << name << ": mke2fs failed (" << status << ") on " << location; in FormatFn()
437 if (auto status = updater_runtime->RunProgram( in FormatFn() local
439 status != 0) { in FormatFn()
440 LOG(ERROR) << name << ": e2fsdroid failed (" << status << ") on " << location; in FormatFn()
457 if (auto status = updater_runtime->RunProgram(f2fs_args, true); status != 0) { in FormatFn() local
458 LOG(ERROR) << name << ": make_f2fs failed (" << status << ") on " << location; in FormatFn()
462 if (auto status = updater_runtime->RunProgram( in FormatFn() local
464 status != 0) { in FormatFn()
465 LOG(ERROR) << name << ": sload_f2fs failed (" << status << ") on " << location; in FormatFn()
643 auto status = updater_runtime->RunProgram(args, false); in RunProgramFn() local
644 return StringValue(std::to_string(status)); in RunProgramFn()
823 int status = updater_runtime->WipeBlockDevice(filename, len); in WipeBlockDeviceFn() local
824 return StringValue(status == 0 ? "t" : ""); in WipeBlockDeviceFn()