Lines Matching refs:exit_code
176 int exit_code = 0; in GetECVersion() local
179 bool success = Subprocess::SynchronousExec(cmd, &exit_code, &input_line); in GetECVersion()
180 if (!success || exit_code) { in GetECVersion()
181 LOG(ERROR) << "Unable to read ec info from mosys (" << exit_code << ")"; in GetECVersion()
294 int exit_code = 0; in GetFirstActiveOmahaPingSent() local
297 if (!Subprocess::SynchronousExec(cmd, &exit_code, &active_ping_str) || in GetFirstActiveOmahaPingSent()
298 exit_code) { in GetFirstActiveOmahaPingSent()
300 << " with exit code: " << exit_code; in GetFirstActiveOmahaPingSent()
315 int exit_code = 0; in SetFirstActiveOmahaPingSent() local
319 if (!Subprocess::SynchronousExec(vpd_set_cmd, &exit_code, &output) || in SetFirstActiveOmahaPingSent()
320 exit_code) { in SetFirstActiveOmahaPingSent()
322 << " with exit code: " << exit_code << " with error: " << output; in SetFirstActiveOmahaPingSent()
327 if (!Subprocess::SynchronousExec(vpd_dump_cmd, &exit_code, &output) || in SetFirstActiveOmahaPingSent()
328 exit_code) { in SetFirstActiveOmahaPingSent()
330 << " with exit code: " << exit_code << " with error: " << output; in SetFirstActiveOmahaPingSent()