Searched refs:exit_code (Results 1 - 25 of 332) sorted by relevance

1234567891011>>

/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/third_party/WebKit/Tools/Scripts/
H A Dtest-webkitruby26 $exit_code = 0;
31 $exit_code = 1 if $?.exitstatus != 0
34 exit $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/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
H A Dchrome_main_delegate_chrome_shell_android.h15 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
/external/chromium_org/v8/tools/testrunner/objects/
H A Doutput.py35 def __init__(self, exit_code, timed_out, stdout, stderr):
36 self.exit_code = exit_code
43 return 0x80000000 & self.exit_code and not (0x3FFFFF00 & self.exit_code)
45 # Timed out tests will have exit_code -signal.SIGTERM.
48 return (self.exit_code < 0 and
49 self.exit_code != -signal.SIGABRT)
55 return [self.exit_code, self.timed_out, self.stdout, self.stderr]
/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
H A Dkill.h44 int exit_code,
51 BASE_EXPORT bool KillProcess(ProcessHandle process, int exit_code, bool wait);
61 int exit_code,
66 // circumstances of the child process' death. |exit_code| is set to
68 // GetExitCodeProcess() on Windows. |exit_code| may be NULL if the
74 int* exit_code);
93 ProcessHandle handle, int* exit_code);
97 // signaled then puts the exit code in |exit_code|; otherwise it's considered
98 // a failure. On Windows |exit_code| is always filled. Returns true on success,
100 BASE_EXPORT bool WaitForExitCode(ProcessHandle handle, int* exit_code);
[all...]
H A Dkill_win.cc94 bool KillProcess(ProcessHandle process, int exit_code, bool wait) { argument
95 bool result = (TerminateProcess(process, exit_code) != FALSE);
109 bool KillProcessById(ProcessId process_id, int exit_code, bool wait) { argument
117 bool ret = KillProcess(process, exit_code, wait);
122 TerminationStatus GetTerminationStatus(ProcessHandle handle, int* exit_code) { argument
127 if (exit_code) {
134 // to leave exit_code uninitialized, since that could cause
137 *exit_code = kNormalTerminationExitCode;
146 if (exit_code)
147 *exit_code
180 WaitForExitCode(ProcessHandle handle, int* exit_code) argument
187 WaitForExitCodeWithTimeout(ProcessHandle handle, int* exit_code, base::TimeDelta timeout) argument
223 int exit_code; local
227 CleanupProcesses(const FilePath::StringType& executable_name, base::TimeDelta wait, int exit_code, const ProcessFilter* filter) argument
[all...]
/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/tools/metrics/histograms/
H A DPRESUBMIT.py18 exit_code = input_api.subprocess.call(
20 if exit_code != 0:
25 exit_code = input_api.subprocess.call(
27 if exit_code != 0:
/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
H A Dchrome_main_delegate_chrome_sync_shell_android.h18 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
/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/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
H A DTest.pm90 if ($g_result->{exit_code} >> 8 != 0) {
99 if ($test_result->{exit_code} >> 8 != 0) {
124 my $exit_code = $?;
139 if ($exit_code < 0) {
140 $exit_value = $exit_code;
141 } elsif ($exit_code && 0xff) {
142 $exit_value = "[SIGNAL $exit_code]";
144 $exit_value = $exit_code >> 8;
148 exit_code => $exit_code,
[all...]
/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/compiler-rt/lib/msan/
H A Dmsan_flags.h21 int exit_code; member in struct:__msan::Flags
/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/chromium_org/v8/tools/
H A Dfuzz-harness.sh86 exit_code=$(cat w* | grep " looking good" -c)
87 exit_code=$((100-exit_code))
91 echo "Total failures: $exit_code"
92 exit $exit_code
/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/remoting/host/setup/
H A Ddaemon_controller_delegate_linux.cc78 int* exit_code) {
79 DCHECK(exit_code);
116 if (!base::WaitForExitCodeWithTimeout(process_handle, exit_code, timeout)) {
126 bool RunHostScript(const std::vector<std::string>& args, int* exit_code) { argument
128 args, base::TimeDelta::FromMilliseconds(kDaemonTimeoutMs), exit_code);
148 int exit_code = 0; local
150 base::GetAppOutputWithExitCode(command_line, &status, &exit_code);
158 if (exit_code != 0) {
160 << "\". Exit code: " << exit_code;
213 int exit_code; local
75 RunHostScriptWithTimeout( const std::vector<std::string>& args, base::TimeDelta timeout, int* exit_code) argument
265 int exit_code = 0; local
277 int exit_code = 0; local
298 int exit_code = 0; local
[all...]
/external/chromium_org/sandbox/linux/services/
H A Dscoped_process_unittest.cc31 void ExitWithCode(int exit_code) { _exit(exit_code); } argument
44 int exit_code = process.WaitForExit(&got_signaled); local
46 EXPECT_EQ(kCustomExitCode, exit_code);
61 int exit_code = process.WaitForExit(&got_signaled); local
63 EXPECT_EQ(SIGABRT, exit_code);
70 int exit_code = process.WaitForExit(&got_signaled); local
72 EXPECT_EQ(SIGKILL, exit_code);
/external/chromium_org/tools/metrics/actions/
H A DPRESUBMIT.py19 exit_code = input_api.subprocess.call(
21 if exit_code != 0:
/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

Completed in 1615 milliseconds

1234567891011>>