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

1 23 4 5 6

  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
config.py 92 exit_code = self._executive.run_command([
95 if exit_code != 0:
chromium_unittest.py 207 port._executive = executive_mock.MockExecutive2(exit_code=0)
211 port._executive = executive_mock.MockExecutive2(exit_code=1)
215 port._executive = executive_mock.MockExecutive2(exit_code=2)
230 port._executive = executive_mock.MockExecutive2(exit_code=0)
234 port._executive = executive_mock.MockExecutive2(exit_code=1,
chromium.py 121 local_error.exit_code = script_error.exit_code
124 if local_error.exit_code:
160 exit_code = self._executive.run_command(cmd, return_exit_code=True)
161 if exit_code == 0:
164 elif exit_code != 1:
166 + str(exit_code))
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.h 93 // bool KilledBySIGHUP(int exit_code) {
94 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
126 explicit ExitedWithCode(int exit_code);
  /external/chromium/testing/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/compiler-rt/include/sanitizer/
asan_interface.h 72 int __asan_set_error_exit_code(int exit_code);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld_linux.cc 232 int exit_code = 0; local
235 exit_code = 3;
240 exit_code = 0;
245 return exit_code;
  /external/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/kernel-headers/original/linux/
binfmts.h 87 extern int do_coredump(long signr, int exit_code, struct pt_regs * regs);
ptrace.h 94 extern void ptrace_notify(int exit_code);
  /external/libvpx/libvpx/third_party/googletest/src/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/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/open-vcdiff/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/chromium/net/tools/crash_cache/
crash_cache.cc 56 int exit_code; local
58 if (!base::WaitForExitCode(handle, &exit_code)) {
62 if (ALL_GOOD != exit_code)
63 printf("Test %d failed, code %d\n", action, exit_code);
65 return exit_code;
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
rebaselineserver.py 303 exit_code = scm.add(destination_path, return_exit_code=True)
304 if exit_code:
306 (destination_file, exit_code))
339 exit_code = test_config.scm.add(destination_path, return_exit_code=True)
340 if exit_code:
342 (file_name, exit_code))
  /external/chromium/chrome/browser/
utility_process_host.cc 191 void UtilityProcessHost::OnProcessCrashed(int exit_code) {
194 NewRunnableMethod(client_.get(), &Client::OnProcessCrashed, exit_code));
  /external/chromium/chrome/browser/extensions/
sandboxed_extension_unpacker.h 189 virtual void OnProcessCrashed(int exit_code);
  /external/compiler-rt/lib/asan/
asan_interface_internal.h 96 int __asan_set_error_exit_code(int exit_code)
  /external/compiler-rt/lib/msan/
msan_interface_internal.h 30 // This function can die based on flags()->exit_code.
83 void __msan_set_exit_code(int exit_code);
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 232 DWORD exit_code; local
233 if (!GetExitCodeProcess(child_handle_, &exit_code)) {
241 if (exit_code != 0) {
243 "Plugin failed with status code $0.", exit_code);
  /external/v8/test/benchmarks/
testcfg.py 51 if output.exit_code != 0:
  /external/chromium/chrome/browser/nacl_host/
nacl_process_host.cc 175 int* exit_code) {
177 return base::GetTerminationStatus(handle(), exit_code);
178 return BrowserChildProcessHost::GetChildTerminationStatus(exit_code);
  /external/v8/tools/
test.py 332 def __init__(self, exit_code, timed_out, stdout, stderr):
333 self.exit_code = exit_code
363 return output.exit_code != 0
428 return 0x80000000 & self.output.exit_code and not (0x3FFFFF00 & self.output.exit_code)
430 # Timed out tests will have exit_code -signal.SIGTERM.
433 return self.output.exit_code < 0 and \
434 self.output.exit_code != -signal.SIGABRT
497 exit_code = Non
    [all...]
  /external/chromium/chrome/common/
service_process_util_unittest.cc 85 int exit_code = 0; local
86 ASSERT_TRUE(base::WaitForExitCode(handle, &exit_code));
87 ASSERT_EQ(exit_code, 0);
181 int exit_code = 0; local
183 &exit_code, TestTimeouts::action_max_timeout_ms()));
185 ASSERT_EQ(exit_code, 0);

Completed in 2166 milliseconds

1 23 4 5 6