Searched defs:exit_code (Results 1 - 25 of 163) sorted by relevance

1234567

/external/chromium_org/remoting/host/win/
H A Dentry_point.cc14 int exit_code = remoting::HostMain(0, NULL); local
15 ExitProcess(exit_code);
/external/chromium_org/content/app/
H A Dcontent_main.cc15 int exit_code = main_runner->Initialize(params); local
16 if (exit_code >= 0)
17 return exit_code;
19 exit_code = main_runner->Run();
23 return exit_code;
/external/chromium_org/content/browser/
H A Dbrowser_main.cc22 int exit_code = main_runner->Initialize(parameters); local
23 if (exit_code >= 0)
24 return exit_code;
26 exit_code = main_runner->Run();
32 return exit_code;
/external/chromium_org/remoting/host/
H A Dhost_exit_codes.cc24 const char* ExitCodeToString(HostExitCodes exit_code) { argument
25 return ValueToName(kHostExitCodeStrings, exit_code);
/external/chromium_org/base/process/
H A Dkill.cc12 int exit_code,
18 result &= KillProcessById(entry->pid(), exit_code, true);
20 result &= KillProcess(entry->pid(), exit_code, true);
11 KillProcesses(const FilePath::StringType& executable_name, int exit_code, const ProcessFilter* filter) argument
/external/chromium_org/chrome/android/shell/
H A Dchrome_main_delegate_chrome_shell_android.cc24 int* exit_code) {
26 return ChromeMainDelegateAndroid::BasicStartupComplete(exit_code);
23 BasicStartupComplete( int* exit_code) argument
/external/chromium_org/chrome/browser/printing/cloud_print/test/
H A Dcloud_print_policy_browsertest.cc56 int exit_code = -100; local
58 base::WaitForExitCodeWithTimeout(handle, &exit_code,
62 EXPECT_EQ(chrome::RESULT_CODE_NORMAL_EXIT_PROCESS_NOTIFIED, exit_code);
84 int exit_code = -100; local
86 base::WaitForExitCodeWithTimeout(handle, &exit_code,
90 EXPECT_EQ(content::RESULT_CODE_NORMAL_EXIT, exit_code);
/external/jemalloc/test/src/
H A Dthd.c18 DWORD exit_code; local
19 GetExitCodeThread(thd, (LPDWORD) &exit_code);
20 *ret = (void *)(uintptr_t)exit_code;
/external/chromium_org/chrome/android/sync_shell/
H A Dchrome_main_delegate_chrome_sync_shell_android.cc34 int* exit_code) {
36 return ChromeMainDelegateAndroid::BasicStartupComplete(exit_code);
33 BasicStartupComplete( int* exit_code) argument
/external/chromium_org/content/public/browser/
H A Dbrowser_child_process_host_delegate.h31 // Called if the process crashed. |exit_code| is the status returned when the
34 virtual void OnProcessCrashed(int exit_code) {} argument
H A Dutility_process_host_client.h24 virtual void OnProcessCrashed(int exit_code) {} argument
H A Dgpu_data_manager_observer.h36 virtual void OnGpuProcessCrashed(base::TerminationStatus exit_code) {} argument
H A Drender_process_host.h47 int exit_code) {
50 this->exit_code = exit_code;
54 int exit_code; member in struct:content::RenderProcessHost::RendererClosedDetails
45 RendererClosedDetails(base::ProcessHandle handle, base::TerminationStatus status, int exit_code) argument
H A Drender_process_host_observer.h28 int exit_code) {}
25 RenderProcessExited(RenderProcessHost* host, base::ProcessHandle handle, base::TerminationStatus status, int exit_code) argument
/external/chromium_org/ash/shell/content_client/
H A Dshell_main_delegate.cc21 bool ShellMainDelegate::BasicStartupComplete(int* exit_code) { argument
/external/chromium_org/chrome/app/android/
H A Dchrome_main_delegate_android.cc54 bool ChromeMainDelegateAndroid::BasicStartupComplete(int* exit_code) { argument
56 return ChromeMainDelegate::BasicStartupComplete(exit_code);
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dsafe_audio_video_checker.cc76 void SafeAudioVideoChecker::OnProcessCrashed(int exit_code) { argument
H A Dsafe_itunes_pref_parser_win.cc58 void SafeITunesPrefParserWin::OnProcessCrashed(int exit_code) { argument
/external/chromium_org/chrome/browser/nacl_host/test/
H A Dgdb_debug_stub_browsertest.cc62 int exit_code; local
63 base::WaitForExitCode(test_script, &exit_code);
64 EXPECT_EQ(0, exit_code);
/external/chromium_org/content/public/app/
H A Dcontent_main_delegate.cc19 bool ContentMainDelegate::BasicStartupComplete(int* exit_code) { argument
/external/chromium_org/mojo/shell/
H A Dchild_process_host_unittest.cc47 int exit_code = child_process_host.Join(); local
48 VLOG(2) << "Joined child: exit_code = " << exit_code;
49 EXPECT_EQ(0, exit_code);
/external/chromium_org/sandbox/linux/services/
H A Dinit_process_reaper.cc72 int exit_code = 0; local
75 exit_code = reaped_child_info.si_status;
79 _exit(exit_code);
/external/chromium_org/testing/gtest/test/
H A Dgtest_premature_exit_test.cc128 const int exit_code = RUN_ALL_TESTS(); local
142 return exit_code;
/external/chromium_org/third_party/webrtc/base/
H A Dposix.cc56 int exit_code = 0; local
58 exit_code |= EXIT_FLAG_CHDIR_ERRORS;
63 exit_code |= EXIT_FLAG_FDWALK_ERRORS;
66 exit_code |= EXIT_FLAG_CLOSE_ERRORS;
76 exit_code |= EXIT_FLAG_SECOND_FORK_FAILED;
77 _exit(exit_code); // if second fork failed
91 _exit(exit_code);
111 int exit_code = WEXITSTATUS(status); local
112 if (exit_code & EXIT_FLAG_CHDIR_ERRORS) {
116 if (exit_code
[all...]
/external/chromium_org/ui/views_content_client/
H A Dviews_content_main_delegate.cc42 bool ViewsContentMainDelegate::BasicStartupComplete(int* exit_code) { argument

Completed in 923 milliseconds

1234567