HomeSort by relevance Sort by last modified time
    Searched refs:exit_code (Results 1 - 25 of 316) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/remoting/host/win/
entry_point.cc 14 int exit_code = remoting::HostMain(0, NULL); local
15 ExitProcess(exit_code);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
test-webkitruby 26 $exit_code = 0;
31 $exit_code = 1 if $?.exitstatus != 0
34 exit $exit_code
  /external/chromium_org/content/app/
content_main.cc 15 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/
browser_main.cc 22 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/
chrome_main_delegate_chrome_shell_android.cc 24 int* exit_code) {
26 return ChromeMainDelegateAndroid::BasicStartupComplete(exit_code);
chrome_main_delegate_chrome_shell_android.h 15 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
  /external/chromium_org/v8/tools/testrunner/objects/
output.py 35 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/
kill.cc 12 int exit_code,
18 result &= KillProcessById(entry->pid(), exit_code, true);
20 result &= KillProcess(entry->pid(), exit_code, true);
kill.h 44 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...]
kill_win.cc 94 bool KillProcess(ProcessHandle process, int exit_code, bool wait) {
95 bool result = (TerminateProcess(process, exit_code) != FALSE);
109 bool KillProcessById(ProcessId process_id, int exit_code, bool wait) {
117 bool ret = KillProcess(process, exit_code, wait);
122 TerminationStatus GetTerminationStatus(ProcessHandle handle, int* exit_code) {
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 = wait_result
223 int exit_code; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
posix.cc 56 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 & EXIT_FLAG_FDWALK_ERRORS)
    [all...]
  /external/chromium_org/content/public/browser/
browser_child_process_host_delegate.h 31 // Called if the process crashed. |exit_code| is the status returned when the
34 virtual void OnProcessCrashed(int exit_code) {}
render_process_host_observer.h 28 int exit_code) {}
utility_process_host_client.h 24 virtual void OnProcessCrashed(int exit_code) {}
  /external/chromium_org/chrome/android/sync_shell/
chrome_main_delegate_chrome_sync_shell_android.cc 34 int* exit_code) {
36 return ChromeMainDelegateAndroid::BasicStartupComplete(exit_code);
chrome_main_delegate_chrome_sync_shell_android.h 18 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
  /external/chromium_org/remoting/host/
host_exit_codes.cc 24 const char* ExitCodeToString(HostExitCodes exit_code) {
25 return ValueToName(kHostExitCodeStrings, exit_code);
worker_process_ipc_delegate.h 30 virtual void OnPermanentError(int exit_code) = 0;
  /external/jemalloc/test/src/
thd.c 18 DWORD exit_code; local
19 GetExitCodeThread(thd, (LPDWORD) &exit_code);
20 *ret = (void *)(uintptr_t)exit_code;
  /external/chromium_org/tools/metrics/histograms/
PRESUBMIT.py 18 exit_code = input_api.subprocess.call(
20 if exit_code != 0:
25 exit_code = input_api.subprocess.call(
27 if exit_code != 0:
  /external/compiler-rt/lib/msan/
msan_flags.h 21 int exit_code; member in struct:__msan::Flags
  /external/chromium_org/chrome/browser/printing/cloud_print/test/
cloud_print_policy_browsertest.cc 56 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/
fuzz-harness.sh 86 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/
child_process_host_unittest.cc 47 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/
daemon_controller_delegate_linux.cc 78 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) {
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
265 int exit_code = 0; local
277 int exit_code = 0; local
298 int exit_code = 0; local
    [all...]

Completed in 639 milliseconds

1 2 3 4 5 6 7 8 91011>>