HomeSort by relevance Sort by last modified time
    Searched refs:exit_code (Results 51 - 75 of 241) sorted by null

1 23 4 5 6 7 8 910

  /external/gtest/test/
gtest_uninitialized_test.py 60 AssertEq(1, p.exit_code)
gtest_premature_exit_test.cc 126 const int exit_code = RUN_ALL_TESTS(); local
140 return exit_code;
  /external/libchrome/base/process/
process_posix.cc 182 int* exit_code,
200 if (exit_code)
201 *exit_code = -1;
205 if (exit_code)
206 *exit_code = WEXITSTATUS(status);
299 bool Process::Terminate(int /* exit_code */, bool wait) const {
300 // exit_code isn't supportable.
347 bool Process::WaitForExit(int* exit_code) {
348 return WaitForExitWithTimeout(TimeDelta::Max(), exit_code);
351 bool Process::WaitForExitWithTimeout(TimeDelta timeout, int* exit_code) {
    [all...]
  /external/protobuf/gtest/test/
gtest_uninitialized_test.py 60 AssertEq(1, p.exit_code)
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_uninitialized_test.py 60 AssertEq(1, p.exit_code)
gtest_premature_exit_test.cc 126 const int exit_code = RUN_ALL_TESTS(); local
140 return exit_code;
  /ndk/sources/third_party/googletest/googletest/test/
gtest_uninitialized_test.py 60 AssertEq(1, p.exit_code)
  /system/update_engine/
hardware_chromeos.cc 118 int exit_code = 0; local
121 bool success = Subprocess::SynchronousExec(cmd, &exit_code, &input_line);
122 if (!success || exit_code) {
123 LOG(ERROR) << "Unable to read ec info from mosys (" << exit_code << ")";
main.cc 126 int exit_code = update_engine_daemon.Run(); local
129 << exit_code;
130 return exit_code;
  /external/chromium-trace/catapult/devil/devil/android/
forwarder.py 98 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
106 if exit_code != 0:
116 exit_code, '\n'.join(output)))
233 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
235 if exit_code != 0:
238 instance._host_forwarder_path, exit_code, '\n'.join(output))
314 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
316 if exit_code != 0:
317 (exit_code, output) = cmd_helper.GetCmdStatusAndOutput(
319 if exit_code != 0
    [all...]
  /external/autotest/client/bin/
autotestd 39 exit_file = open(os.path.join(logdir, 'exit_code'), 'w', 0)
46 exit_code = subprocess.call(cmd, shell=True) variable
47 exit_file.write('%+04d' % exit_code)
autotest 89 exit_code = 0 variable
93 exit_code = 1 variable
94 sys.exit(exit_code)
  /external/autotest/client/site_tests/firmware_TouchMTB/
common_util.py 63 def print_and_exit(msg, exit_code=1):
66 sys.exit(exit_code)
  /external/valgrind/tests/
power_insn_available.c 25 } exit_code; typedef in typeref:enum:exit_codes_
73 exit_code status;
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
sample_profiler.py 34 exit_code = self._proc.wait()
36 if exit_code:
39 exit_code, self._GetStdOut()))
vtune_profiler.py 43 exit_code = self._proc.wait()
47 if exit_code not in (0, 1):
49 'amplxe-cl failed with exit code %d. Output:\n%s' % (exit_code,
54 if exit_code:
  /system/media/brillo/audio/audioservice/
audio_daemon.cpp 100 int exit_code = Daemon::OnInit(); local
101 if (exit_code != EX_OK) return exit_code;
  /external/libchrome/sandbox/linux/services/
namespace_sandbox.h 104 // Installs a signal handler for |sig| which exits with |exit_code|. If a
107 static bool InstallTerminationSignalHandler(int sig, int exit_code);
namespace_sandbox_unittest.cc 67 int exit_code = kDummyExitCode; local
68 EXPECT_TRUE(process.WaitForExit(&exit_code));
69 EXPECT_EQ(0, exit_code);
138 int exit_code = kDummyExitCode; local
139 CHECK(process.WaitForExit(&exit_code));
140 CHECK_EQ(0, exit_code);
  /external/libcxx/utils/sym_check/sym_check/
extract.py 41 out, _, exit_code = util.execute_command_verbose(cmd)
42 if exit_code != 0:
124 out, _, exit_code = util.execute_command_verbose(cmd)
125 if exit_code != 0:
  /external/mtpd/
mtpd.h 51 enum exit_code { enum
  /prebuilts/clang/host/linux-x86/3.8/lib/clang/3.8/include/sanitizer/
msan_interface.h 66 void __msan_set_exit_code(int exit_code);
  /prebuilts/clang/linux-x86/host/3.6/lib/clang/3.6/include/sanitizer/
msan_interface.h 66 void __msan_set_exit_code(int exit_code);
  /external/autotest/server/cros/
telemetry_runner.py 49 def __init__(self, exit_code=0, stdout='', stderr=''):
56 if exit_code == 0:
372 exit_code = 0
377 exit_code = result.exit_status
384 exit_code = e.result_obj.exit_status
389 'stderr:%s', exit_code, stdout, stderr)
391 return TelemetryResult(exit_code=exit_code, stdout=stdout,
  /system/tpm/tpm_manager/client/
main.cc 95 int exit_code = ClientLoopBase::OnInit(); variable
96 if (exit_code != EX_OK) {
98 return exit_code;
112 exit_code = ScheduleCommand();
113 if (exit_code == EX_USAGE) {
116 return exit_code;
119 void OnShutdown(int* exit_code) override {
122 ClientLoopBase::OnShutdown(exit_code);

Completed in 1897 milliseconds

1 23 4 5 6 7 8 910