HomeSort by relevance Sort by last modified time
    Searched full:exit_code (Results 26 - 50 of 119) sorted by null

12 3 4 5

  /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);
gtest-death-test.cc 83 ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) {
106 static String ExitSummary(int exit_code) {
108 if (WIFEXITED(exit_code)) {
109 m << "Exited with exit status " << WEXITSTATUS(exit_code);
110 } else if (WIFSIGNALED(exit_code)) {
111 m << "Terminated by signal " << WTERMSIG(exit_code);
114 if (WCOREDUMP(exit_code)) {
  /external/mtpd/
mtpd.h 23 enum exit_code { enum
  /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/chromium/testing/gtest/test/
gtest_xml_output_unittest.py 174 self.assertEquals(0, p.exit_code)
199 self.assertEquals(1, p.exit_code,
202 % (command, p.exit_code, 1))
225 self.assertEquals(expected_exit_code, p.exit_code,
228 % (command, p.exit_code, expected_exit_code))
gtest_uninitialized_test.py 60 AssertEq(1, p.exit_code)
  /external/protobuf/gtest/test/
gtest_xml_output_unittest.py 156 self.assertEquals(0, p.exit_code)
181 self.assertEquals(1, p.exit_code,
184 % (command, p.exit_code, 1))
207 self.assertEquals(expected_exit_code, p.exit_code,
210 % (command, p.exit_code, expected_exit_code))
gtest_uninitialized_test.py 60 AssertEq(1, p.exit_code)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
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,
config.py 92 exit_code = self._executive.run_command([
95 if exit_code != 0:
  /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);
  /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))
abstractsequencedcommand.py 49 exit(e.exit_code or 2)
  /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/chromium/net/disk_cache/
stress_cache.cc 67 int exit_code; local
68 if (!base::WaitForExitCode(handle, &exit_code)) {
72 return exit_code;
  /external/gtest/test/
gtest_xml_output_unittest.py 138 self.assertEquals(0, p.exit_code)
161 self.assertEquals(expected_exit_code, p.exit_code,
164 % (command, p.exit_code, expected_exit_code))
  /external/chromium/chrome/browser/importer/
profile_import_process_host.h 68 virtual void OnProcessCrashed(int exit_code) OVERRIDE;
  /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/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);
  /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/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/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);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cn_proc.h 95 __u32 exit_code, exit_signal; member in struct:proc_event::__anon20901::exit_proc_event
  /external/chromium/chrome/browser/
utility_process_host.cc 191 void UtilityProcessHost::OnProcessCrashed(int exit_code) {
194 NewRunnableMethod(client_.get(), &Client::OnProcessCrashed, exit_code));

Completed in 1483 milliseconds

12 3 4 5