| /external/chromium/chrome/browser/ |
| process_singleton_linux_uitest.cc | 174 int exit_code = 0; local 176 TestTimeouts::action_max_timeout_ms(), &exit_code)); 177 EXPECT_EQ(-1, exit_code); // Expect unclean shutdown. 231 int exit_code = 0; local 233 TestTimeouts::action_max_timeout_ms(), &exit_code)); 234 EXPECT_EQ(-1, exit_code); // Expect unclean shutdown. 256 int exit_code = 0; local 258 TestTimeouts::action_max_timeout_ms(), &exit_code)); 259 EXPECT_EQ(-1, exit_code); // Expect unclean shutdown.
|
| unload_uitest.cc | 293 int exit_code = -1; local 295 TestTimeouts::action_max_timeout_ms(), &exit_code)); 296 EXPECT_EQ(0, exit_code); // Expect a clean shutown. 317 int exit_code = -1; local 319 TestTimeouts::action_max_timeout_ms(), &exit_code)); 320 EXPECT_EQ(0, exit_code); // Expect a clean shutdown. 343 int exit_code = -1; local 345 TestTimeouts::action_max_timeout_ms(), &exit_code)); 346 EXPECT_EQ(0, exit_code); // Expect a clean shutdown.
|
| utility_process_host.h | 42 virtual void OnProcessCrashed(int exit_code) {} 181 virtual void OnProcessCrashed(int exit_code);
|
| /external/compiler-rt/lib/msan/ |
| msan.cc | 120 ParseFlag(str, &f->exit_code, "exit_code"); 121 if (f->exit_code < 0 || f->exit_code > 127) { 122 Printf("Exit code not in [0, 128) range: %d\n", f->exit_code); 123 f->exit_code = 1; 140 f->exit_code = 77; 290 void __msan_set_exit_code(int exit_code) { 291 flags()->exit_code = exit_code; [all...] |
| msan_linux.cc | 79 _exit(flags()->exit_code); 85 if (flags()->exit_code) 86 _exit(flags()->exit_code);
|
| /external/chromium/base/ |
| process_util_win.cc | 313 bool KillProcessById(ProcessId process_id, int exit_code, bool wait) { 322 bool ret = KillProcess(process, exit_code, wait); 400 bool KillProcess(ProcessHandle process, int exit_code, bool wait) { 401 bool result = (TerminateProcess(process, exit_code) != FALSE); 412 TerminationStatus GetTerminationStatus(ProcessHandle handle, int* exit_code) { 417 if (exit_code) { 424 // to leave exit_code uninitialized, since that could cause 427 *exit_code = kNormalTerminationExitCode; 436 if (exit_code) 437 *exit_code = wait_result [all...] |
| process_util_unittest.cc | 87 int* exit_code) { 93 status = base::GetTerminationStatus(handle, exit_code); 143 int exit_code = 42; local 145 base::GetTerminationStatus(handle, &exit_code)); 146 EXPECT_EQ(kExpectedStillRunningExitCode, exit_code); 149 exit_code = 42; 151 WaitForChildTermination(handle, &exit_code); 153 EXPECT_EQ(0, exit_code); 187 int exit_code = 42; local 189 base::GetTerminationStatus(handle, &exit_code)); 233 int exit_code = 42; local [all...] |
| process_util.h | 340 int exit_code, const ProcessFilter* filter); 346 BASE_API bool KillProcess(ProcessHandle process, int exit_code, bool wait); 355 BASE_API bool KillProcessById(ProcessId process_id, int exit_code, bool wait); 359 // circumstances of the child process' death. |exit_code| is set to 361 // GetExitCodeProcess() on Windows. |exit_code| may be NULL if the 367 int* exit_code); 370 // signaled then puts the exit code in |exit_code|; otherwise it's considered 371 // a failure. On Windows |exit_code| is always filled. Returns true on success, 373 BASE_API bool WaitForExitCode(ProcessHandle handle, int* exit_code); 376 // then puts the exit code in |exit_code|, and returns true [all...] |
| process_util_posix.cc | 222 // entry structure. Ignores specified exit_code; posix can't force that. 224 bool KillProcess(ProcessHandle process_id, int exit_code, bool wait) { 696 TerminationStatus GetTerminationStatus(ProcessHandle handle, int* exit_code) { 701 if (exit_code) 702 *exit_code = 0; 706 if (exit_code) 707 *exit_code = 0; 711 if (exit_code) 712 *exit_code = status; 737 bool WaitForExitCode(ProcessHandle handle, int* exit_code) { 979 int exit_code = EXIT_FAILURE; local [all...] |
| /external/qemu/memcheck/ |
| memcheck.h | 147 * exit_code - Thread exit code. 149 void memcheck_exit(uint32_t exit_code);
|
| /external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
| abstractsequencedcommand.py | 49 exit(e.exit_code or 2)
|
| /external/webkit/Tools/Scripts/webkitpy/tool/ |
| multicommandtool_unittest.py | 85 exit_code = OutputCapture().assert_outputs(self, two_required_arguments.check_arguments_and_execute, [None, ["foo"], TrivialTool()], expected_stderr=expected_missing_args_error) 86 self.assertEqual(exit_code, 1) 125 exit_code = OutputCapture().assert_outputs(self, tool.main, [main_args], expected_stdout=expected_stdout, expected_stderr=expected_stderr) 126 self.assertEqual(exit_code, expected_exit_code)
|
| /prebuilts/gcc/linux-x86/host/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::__anon26315::exit_proc_event
|
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
| cn_proc.h | 95 __u32 exit_code, exit_signal; member in struct:proc_event::__anon27906::exit_proc_event
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
| cn_proc.h | 95 __u32 exit_code, exit_signal; member in struct:proc_event::__anon29420::exit_proc_event
|
| /external/chromium/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/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
| gjslint.py | 249 exit_code = 0 253 exit_code += 1 257 exit_code += 2 259 if exit_code: 287 sys.exit(exit_code)
|
| /external/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/libvpx/libvpx/third_party/googletest/src/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/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
| config_unittest.py | 67 def make_config(self, output='', files={}, exit_code=0, exception=None, 69 e = executive_mock.MockExecutive2(output=output, exit_code=exit_code, 95 c = self.make_config(exit_code=0) 101 c = self.make_config(exit_code=-1)
|
| /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/chromium/base/win/ |
| event_trace_consumer_unittest.cc | 152 DWORD exit_code = 0; 153 if (::GetExitCodeThread(consumer_thread_, &exit_code)) 154 return exit_code; 172 DWORD exit_code = 0; 173 if (::GetExitCodeThread(consumer_thread_, &exit_code)) 174 return exit_code;
|
| /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/chromium/chrome/browser/importer/ |
| profile_import_process_host.cc | 132 void ProfileImportProcessHost::OnProcessCrashed(int exit_code) { 138 exit_code));
|
| /external/chromium/sdch/open-vcdiff/src/gtest/ |
| 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)) {
|