HomeSort by relevance Sort by last modified time
    Searched refs:exit_code (Results 101 - 125 of 304) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/autotest/client/bin/
autotest 88 exit_code = 0 variable
92 exit_code = 1 variable
93 sys.exit(exit_code)
  /external/clang/tools/scan-build-py/tests/functional/cases/
__init__.py 61 exit_code, result = call_and_report(analyzer_cmd, build_cmd)
62 if exit_code != 0:
64 exit_code, analyzer_cmd + build_cmd, None)
  /external/libcxx/utils/libcxx/sym_check/
extract.py 52 out, _, exit_code = libcxx.util.executeCommandVerbose(cmd)
53 if exit_code != 0:
138 out, _, exit_code = libcxx.util.executeCommandVerbose(cmd)
139 if exit_code != 0:
  /external/mtpd/
mtpd.h 51 enum exit_code { enum
  /external/wayland/tests/
test-compositor.h 41 int exit_code; member in struct:client_info
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/sym_check/
extract.py 52 out, _, exit_code = libcxx.util.executeCommandVerbose(cmd)
53 if exit_code != 0:
138 out, _, exit_code = libcxx.util.executeCommandVerbose(cmd)
139 if exit_code != 0:
  /external/curl/scripts/
zsh.pl 85 } elsif ((my $exit_code = $? >> 8) != 0) {
86 die "curl returned $exit_code with output:\n$output";
  /external/libcxx/utils/
sym_diff.py 69 exit_code = 1 if is_break or (args.strict and is_different) else 0
70 sys.exit(exit_code)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/
sym_diff.py 69 exit_code = 1 if is_break or (args.strict and is_different) else 0
70 sys.exit(exit_code)
  /system/core/debuggerd/
debuggerd.cpp 35 static void usage(int exit_code) {
39 _exit(exit_code);
  /test/vts/utils/python/common/
cmd_utils.py 24 EXIT_CODE = 'return_codes'
87 """Executes one shell command and returns (stdout, stderr, exit_code).
94 tuple(string, string, int), containing stdout, stderr, exit_code of
96 If timeout, exit_code is -15 on Unix; -1073741510 on Windows.
115 dict{int->string}, containing stdout, stderr, exit_code of the shell command(s)
121 stdout, stderr, exit_code = zip(*results)
122 return {STDOUT: stdout, STDERR: stderr, EXIT_CODE: exit_code}
  /external/libchrome/base/process/
launch_posix.cc 541 // success, the application exit code will be returned in |*exit_code|, which
549 int* exit_code) {
552 // exit_code must be supplied so calling function can determine success.
553 DCHECK(exit_code);
554 *exit_code = EXIT_FAILURE;
641 return process.WaitForExit(exit_code);
652 int exit_code; local
654 GetAppOutputInternal(argv, nullptr, false, output, true, &exit_code);
655 return result && exit_code == EXIT_SUCCESS;
660 int exit_code; local
668 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
307 An (exit_code, output_string) tuple. The output string is
346 exit_code, stdout, stderr = self.shell_nocheck(cmd)
347 if exit_code != 0:
348 raise ShellError(cmd, stdout, stderr, exit_code)
358 An (exit_code, stdout, stderr) tuple. Stderr may be combined
369 exit_code = p.returncod
    [all...]
  /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/googletest/googletest/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/v8/testing/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/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
  /prebuilts/ndk/r16/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
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/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
  /system/extras/simpleperf/
workload.cpp 177 bool Workload::WaitChildProcess(int* exit_code) {
178 return WaitChildProcess(true, false, exit_code);
181 bool Workload::WaitChildProcess(bool wait_forever, bool is_child_killed, int* exit_code) {
196 if (exit_code != nullptr) {
197 *exit_code = WEXITSTATUS(status);
  /external/autotest/cli/
cli_mock.py 148 def run_cmd(self, argv, rpcs=[], exit_code=None,
158 @param exit_code: Expected exit code of the command (if not 0).
174 if exit_code is not None:
175 sys.exit.expect_call(exit_code).and_raises(ExitException)
  /system/update_engine/
main.cc 195 int exit_code = update_engine_daemon.Run(); local
198 << exit_code;
199 return exit_code;
  /test/vts/utils/python/library/
vtable_parser.py 92 stdout, stderr, exit_code = cmd_utils.ExecuteOneShellCommand(cmd)
95 if exit_code:
99 "stderr: %s" % (cmd, exit_code, stdout, stderr))
  /test/vts-testcase/fuzz/template/libfuzzer_test/
libfuzzer_test.py 145 logging.info('exit code: %s' % result[const.EXIT_CODE])
151 exit_code = result[const.EXIT_CODE]
152 if exit_code == config.ExitCode.FUZZER_TEST_FAIL:
155 elif exit_code != config.ExitCode.FUZZER_TEST_PASS:

Completed in 584 milliseconds

1 2 3 45 6 7 8 91011>>