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

1 2 34 5 6 7 8 910

  /external/libchrome/base/process/
launch_posix.cc 536 // in |*exit_code|, which should be checked to determine if the application
545 int* exit_code) {
548 // exit_code must be supplied so calling function can determine success.
549 DCHECK(exit_code);
550 *exit_code = EXIT_FAILURE;
641 bool success = process.WaitForExit(exit_code);
660 int exit_code; local
663 &exit_code);
664 return result == EXECUTE_SUCCESS && exit_code == EXIT_SUCCESS;
669 int exit_code; local
682 int exit_code; local
    [all...]
  /development/python-packages/adb/
device.py 41 def __init__(self, cmd, stdout, stderr, exit_code):
43 '`{0}` exited with code {1}'.format(cmd, exit_code))
47 self.exit_code = exit_code
268 An (exit_code, output_string) tuple. The output string is
307 exit_code, stdout, stderr = self.shell_nocheck(cmd)
308 if exit_code != 0:
309 raise ShellError(cmd, stdout, stderr, exit_code)
319 An (exit_code, stdout, stderr) tuple. Stderr may be combined
328 exit_code = p.returncod
    [all...]
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
gjslint.py 284 exit_code = 0
288 exit_code += 1
292 exit_code += 2
294 if exit_code:
323 sys.exit(exit_code)
  /external/google-breakpad/src/testing/gtest/test/
gtest_test_utils.py 172 def GetExitStatus(exit_code):
176 exit_code: the result value of os.system(command).
182 return exit_code
186 if os.WIFEXITED(exit_code):
187 return os.WEXITSTATUS(exit_code)
212 exit_code The code with which the child process exited.
288 self.exit_code = self._return_code
  /external/gtest/test/
gtest_test_utils.py 187 def GetExitStatus(exit_code):
191 exit_code: the result value of os.system(command).
197 return exit_code
201 if os.WIFEXITED(exit_code):
202 return os.WEXITSTATUS(exit_code)
227 exit_code The code with which the child process exited.
303 self.exit_code = self._return_code
  /external/protobuf/gtest/test/
gtest_test_utils.py 176 def GetExitStatus(exit_code):
180 exit_code: the result value of os.system(command).
186 return exit_code
190 if os.WIFEXITED(exit_code):
191 return os.WEXITSTATUS(exit_code)
216 exit_code The code with which the child process exited.
292 self.exit_code = self._return_code
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_test_utils.py 187 def GetExitStatus(exit_code):
191 exit_code: the result value of os.system(command).
197 return exit_code
201 if os.WIFEXITED(exit_code):
202 return os.WEXITSTATUS(exit_code)
227 exit_code The code with which the child process exited.
303 self.exit_code = self._return_code
  /ndk/sources/third_party/googletest/googletest/test/
gtest_test_utils.py 172 def GetExitStatus(exit_code):
176 exit_code: the result value of os.system(command).
182 return exit_code
186 if os.WIFEXITED(exit_code):
187 return os.WEXITSTATUS(exit_code)
212 exit_code The code with which the child process exited.
288 self.exit_code = self._return_code
  /external/autotest/cli/
cli_mock.py 96 def run_cmd(self, argv, rpcs=[], exit_code=None,
102 exit_code should be set if you expect the command
111 if exit_code is not None:
112 sys.exit.expect_call(exit_code).and_raises(ExitException)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
tcpdump_profiler.py 83 exit_code = self._proc.wait()
85 if exit_code:
88 (exit_code, self._GetStdOut()))
  /ndk/sources/host-tools/make-3.81/
job.c 378 EXIT_CODE, EXIT_SIG, and COREDUMP, for the target TARGET_NAME.
382 child_error (char *target_name, int exit_code, int exit_sig, int coredump,
389 if (!(exit_code & 1))
393 target_name, exit_code);
398 target_name, exit_code);
478 int exit_code, exit_sig, coredump;
532 pid = remote_status (&exit_code, &exit_sig, &coredump, 0);
574 exit_code = WEXITSTATUS (status);
591 pid = remote_status (&exit_code, &exit_sig, &coredump, 1);
607 exit_code = WEXITSTATUS (status)
474 int exit_code, exit_sig, coredump; local
    [all...]
  /external/jsoncpp/test/
rununittests.py 70 exit_code = runAllTests( args[0], use_valgrind=options.valgrind )
71 sys.exit( exit_code )
  /external/v8/tools/
android-run.py 58 exit_code = process.wait()
67 return exit_code or Check(output, errors)
  /external/v8/tools/testrunner/local/
commands.py 115 exit_code, timed_out, stdout, stderr = RunProcess(
120 return output.Output(exit_code, timed_out, stdout, stderr)
  /bionic/libc/kernel/uapi/linux/
cn_proc.h 106 __u32 exit_code, exit_signal; member in struct:proc_event::__anon416::exit_proc_event
  /development/ndk/platforms/android-21/include/linux/
cn_proc.h 106 __u32 exit_code, exit_signal; member in struct:proc_event::__anon1553::exit_proc_event
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-death-test.h 94 // bool KilledBySIGHUP(int exit_code) {
95 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
192 explicit ExitedWithCode(int exit_code);
  /external/gtest/include/gtest/
gtest-death-test.h 94 // bool KilledBySIGHUP(int exit_code) {
95 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
192 explicit ExitedWithCode(int exit_code);
  /external/kernel-headers/original/uapi/linux/
cn_proc.h 123 __u32 exit_code, exit_signal; member in struct:proc_event::__anon13908::exit_proc_event
  /external/libchrome/sandbox/linux/services/
namespace_sandbox.cc 201 int exit_code) {
219 DCHECK_GE(exit_code, 0);
220 DCHECK_LT(exit_code, 256);
222 g_signal_exit_codes[sig_idx] = exit_code;
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-death-test.h 83 // bool KilledBySIGHUP(int exit_code) {
84 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
181 explicit ExitedWithCode(int exit_code);
  /external/mesa3d/src/gtest/include/gtest/
gtest-death-test.h 83 // bool KilledBySIGHUP(int exit_code) {
84 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
181 explicit ExitedWithCode(int exit_code);
  /external/protobuf/gtest/include/gtest/
gtest-death-test.h 83 // bool KilledBySIGHUP(int exit_code) {
84 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
181 explicit ExitedWithCode(int exit_code);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest-death-test.h 94 // bool KilledBySIGHUP(int exit_code) {
95 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
192 explicit ExitedWithCode(int exit_code);
  /ndk/sources/third_party/googletest/googletest/include/gtest/
gtest-death-test.h 94 // bool KilledBySIGHUP(int exit_code) {
95 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
192 explicit ExitedWithCode(int exit_code);

Completed in 1583 milliseconds

1 2 34 5 6 7 8 910