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

12 3 4 5

  /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::__anon20898::exit_proc_event
  /external/chromium/chrome/browser/
utility_process_host.h 42 virtual void OnProcessCrashed(int exit_code) {}
181 virtual void OnProcessCrashed(int exit_code);
utility_process_host.cc 191 void UtilityProcessHost::OnProcessCrashed(int exit_code) {
194 NewRunnableMethod(client_.get(), &Client::OnProcessCrashed, exit_code));
  /external/chromium/base/
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 218 // entry structure. Ignores specified exit_code; posix can't force that.
220 bool KillProcess(ProcessHandle process_id, int exit_code, bool wait) {
672 TerminationStatus GetTerminationStatus(ProcessHandle handle, int* exit_code) {
677 if (exit_code)
678 *exit_code = 0;
682 if (exit_code)
683 *exit_code = 0;
687 if (exit_code)
688 *exit_code = status;
713 bool WaitForExitCode(ProcessHandle handle, int* exit_code) {
943 int exit_code = EXIT_FAILURE; local
    [all...]
  /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/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)
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,
  /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)) {
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/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/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/extensions/
sandboxed_extension_unpacker.h 189 virtual void OnProcessCrashed(int exit_code);
  /external/gtest/test/
gtest_filter_unittest.py 152 exit_code = stdout_file.close()
153 return (tests_run, exit_code)
245 (tests_run, exit_code) = RunWithSharding(total_shards, i, command)
247 self.assert_(exit_code is None)

Completed in 711 milliseconds

12 3 4 5