HomeSort by relevance Sort by last modified time
    Searched full:exit_code (Results 226 - 250 of 393) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/media_galleries/fileapi/
safe_picasa_albums_indexer.cc 121 void SafePicasaAlbumsIndexer::OnProcessCrashed(int exit_code) {
  /external/chromium_org/chrome/browser/storage_monitor/
storage_monitor_linux.cc 235 int exit_code = -1; local
236 if (!base::WaitForExitCodeWithTimeout(handle, &exit_code,
246 if (exit_code == 1)
248 if (exit_code != 0)
  /external/chromium_org/chrome/test/chromedriver/
chrome_launcher.cc 190 int exit_code; local
192 base::GetTerminationStatus(process, &exit_code);
216 int exit_code; local
217 if (base::GetTerminationStatus(process, &exit_code) ==
  /external/chromium_org/content/browser/
browser_child_process_host_impl.h 54 virtual base::TerminationStatus GetTerminationStatus(int* exit_code) OVERRIDE;
utility_process_host_impl.cc 290 void UtilityProcessHostImpl::OnProcessCrashed(int exit_code) {
294 exit_code));
  /external/chromium_org/remoting/host/
desktop_session_win.h 90 virtual void OnPermanentError(int exit_code) OVERRIDE;
remoting_me2me_host.cc 228 // Stops the host and shuts down the process with the specified |exit_code|.
229 void ShutdownHost(HostExitCodes exit_code);
1160 int exit_code = kSuccessExitCode; local
    [all...]
  /external/chromium_org/sandbox/linux/suid/
sandbox.c 195 int exit_code = -1; local
203 exit_code = reaped_child_info.si_status;
206 exit_code = 0;
209 _exit(exit_code);
  /external/chromium_org/sandbox/win/sandbox_poc/
main_ui_window.cc 377 DWORD exit_code = 0; local
378 if (!GetExitCodeProcess(target_.hProcess, &exit_code)) {
379 exit_code = 0xFFFF; // Default exit code
385 AddDebugMessage(L"Targed exited with return code %d", exit_code);
  /external/chromium_org/v8/test/cctest/
testcfg.py 54 if output.exit_code != 0:
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld_linux_libcdep.cc 241 int exit_code = 0; local
244 exit_code = 3;
249 exit_code = 0;
254 return exit_code;
  /external/kernel-headers/original/linux/
ptrace.h 94 extern void ptrace_notify(int exit_code);
  /external/qemu/target-i386/
svm.h 151 uint64_t exit_code; member in struct:vmcb_control_area
  /external/v8/test/benchmarks/
testcfg.py 51 if output.exit_code != 0:
  /external/v8/test/es5conform/
testcfg.py 52 if output.exit_code != 0:
  /external/v8/test/sputnik/
testcfg.py 48 if output.exit_code != 0:
  /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/
utility_process_host.h 42 virtual void OnProcessCrashed(int exit_code) {}
181 virtual void OnProcessCrashed(int exit_code);
  /external/chromium_org/chrome/test/automation/
proxy_launcher.h 107 // puts the exit code in |exit_code| and returns true.
108 bool WaitForBrowserProcessToQuit(base::TimeDelta timeout, int* exit_code);
  /external/chromium_org/tools/
update_reference_build.py 80 exit_code = p.returncode
84 return (exit_code, stdout)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipimport_support.py 206 exit_code, data = run_python(script_name)
215 exit_code, data = run_python(zip_name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zipimport_support.py 206 exit_code, data = run_python(script_name)
215 exit_code, data = run_python(zip_name)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
manager.py 187 return test_run_results.RunDetails(exit_code=-1)
198 return test_run_results.RunDetails(exit_code=-1)
201 return test_run_results.RunDetails(exit_code=-1)
245 exit_code = summarized_failing_results['num_regressions']
252 if self._options.show_results and (exit_code or (self._options.full_results_html and initial_results.total_failures)):
256 return test_run_results.RunDetails(exit_code, summarized_full_results, summarized_failing_results, initial_results, retry_results, enabled_pixel_tests_in_retry)
  /ndk/sources/host-tools/make-3.81/w32/subproc/
sub_proc.c 44 int exit_code; member in struct:sub_process_t
97 if (fake_exits_pending && proc_array[i]->exit_code)
210 return (((sub_process *)proc)->exit_code);
797 pproc->exit_code = ierr;
895 pproc->exit_code = ierr;
1245 ((sub_process*) hProcess)->exit_code = process_last_err(hProcess);
  /external/chromium/testing/gtest/src/
gtest-death-test.cc 111 ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) {
144 static String ExitSummary(int exit_code) {
149 m << "Exited with exit status " << exit_code; local
153 if (WIFEXITED(exit_code)) {
154 m << "Exited with exit status " << WEXITSTATUS(exit_code);
155 } else if (WIFSIGNALED(exit_code)) {
156 m << "Terminated by signal " << WTERMSIG(exit_code);
159 if (WCOREDUMP(exit_code)) {
    [all...]

Completed in 886 milliseconds

1 2 3 4 5 6 7 8 91011>>