HomeSort by relevance Sort by last modified time
    Searched refs:exit_code (Results 1 - 25 of 374) 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 24 int exit_code; local
27 exit_code = main_runner->Initialize(instance, sandbox_info, delegate);
29 exit_code = main_runner->Initialize(argc, argv, delegate);
32 if (exit_code >= 0)
33 return exit_code;
35 exit_code = main_runner->Run();
39 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/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/chrome_frame/
chrome_launcher_main.cc 21 UINT exit_code = ERROR_FILE_NOT_FOUND; local
24 exit_code = update_launcher::LaunchUpdateCommand(update_command);
26 exit_code = ERROR_SUCCESS;
28 return exit_code;
  /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 37 int exit_code,
44 BASE_EXPORT bool KillProcess(ProcessHandle process, int exit_code, bool wait);
54 int exit_code,
59 // circumstances of the child process' death. |exit_code| is set to
61 // GetExitCodeProcess() on Windows. |exit_code| may be NULL if the
67 int* exit_code);
75 int* exit_code);
79 // signaled then puts the exit code in |exit_code|; otherwise it's considered
80 // a failure. On Windows |exit_code| is always filled. Returns true on success,
82 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/libjingle/source/talk/base/
posix.cc 73 int exit_code = 0; local
75 exit_code |= EXIT_FLAG_CHDIR_ERRORS;
80 exit_code |= EXIT_FLAG_FDWALK_ERRORS;
83 exit_code |= EXIT_FLAG_CLOSE_ERRORS;
93 exit_code |= EXIT_FLAG_SECOND_FORK_FAILED;
94 _exit(exit_code); // if second fork failed
108 _exit(exit_code);
128 int exit_code = WEXITSTATUS(status); local
129 if (exit_code & EXIT_FLAG_CHDIR_ERRORS) {
133 if (exit_code & EXIT_FLAG_FDWALK_ERRORS)
    [all...]
  /external/chromium_org/chrome_frame/tools/
helper_shutdown.py 17 exit_code = 0
29 exit_code = 1
30 return exit_code
  /external/chromium_org/content/public/browser/
browser_child_process_host_delegate.h 27 // Called if the process crashed. |exit_code| is the status returned when the
30 virtual void OnProcessCrashed(int exit_code) {}
utility_process_host_client.h 24 virtual void OnProcessCrashed(int exit_code) {}
  /external/compiler-rt/lib/msan/
msan_flags.h 21 int exit_code; member in struct:__msan::Flags
  /external/chromium/testing/gmock/test/
gmock_leak_test.py 51 gmock_test_utils.Subprocess(TEST_WITH_EXPECT_CALL).exit_code)
54 gmock_test_utils.Subprocess(TEST_WITH_ON_CALL).exit_code)
60 ['--gmock_catch_leaked_mocks=0']).exit_code)
64 ['--gmock_catch_leaked_mocks=0']).exit_code)
70 ['--gmock_catch_leaked_mocks']).exit_code)
74 ['--gmock_catch_leaked_mocks']).exit_code)
80 ['--gmock_catch_leaked_mocks=1']).exit_code)
86 ['--gmock_catch_leaked_mocks']).exit_code)
gmock_test_utils.py 76 def GetExitStatus(exit_code):
80 exit_code: the result value of os.system(command).
86 return exit_code
90 if os.WIFEXITED(exit_code):
91 return os.WEXITSTATUS(exit_code)
  /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/chromium_org/chrome/android/testshell/
chrome_main_delegate_testshell_android.h 15 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
chrome_main_delegate_testshell_android.cc 28 bool ChromeMainDelegateTestShellAndroid::BasicStartupComplete(int* exit_code) {
30 return ChromeMainDelegateAndroid::BasicStartupComplete(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/chromium_org/chrome/browser/printing/cloud_print/test/
cloud_print_policy_browsertest.cc 55 int exit_code = -100; local
57 base::WaitForExitCodeWithTimeout(handle, &exit_code,
61 EXPECT_EQ(chrome::RESULT_CODE_NORMAL_EXIT_PROCESS_NOTIFIED, exit_code);
82 int exit_code = -100; local
84 base::WaitForExitCodeWithTimeout(handle, &exit_code,
88 EXPECT_EQ(content::RESULT_CODE_NORMAL_EXIT, exit_code);
  /system/media/camera/docs/
metadata-parser-sanity-check 37 exit_code=$?
40 if [[ $exit_code -ne 0 ]]
47 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/chrome/browser/first_run/
upgrade_util_win.cc 50 DWORD exit_code; local
51 ::GetExitCodeProcess(handle, &exit_code);
53 if (exit_code == installer::RENAME_SUCCESSFUL)
101 DWORD exit_code; local
102 ::GetExitCodeProcess(handle, &exit_code);
104 if (exit_code == installer::RENAME_SUCCESSFUL)

Completed in 2872 milliseconds

1 2 3 4 5 6 7 8 91011>>