/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/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_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...] |
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...] |
/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;
|
chrome_frame_unittest_main.cc | 44 int exit_code = test_suite.Run(); local 46 return exit_code; 57 int exit_code = base::LaunchUnitTests(argc, local 64 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/tools/ |
helper_shutdown.py | 17 exit_code = 0 29 exit_code = 1 30 return exit_code
|
/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/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)
|
/external/chromium_org/remoting/host/ |
host_exit_codes.cc | 24 const char* ExitCodeToString(HostExitCodes exit_code) { 25 return ValueToName(kHostExitCodeStrings, exit_code);
|
host_status_sender.cc | 70 void HostStatusSender::SendOfflineStatus(HostExitCodes exit_code) { 71 SendHostStatus(OFFLINE, exit_code); 79 HostExitCodes exit_code) { 89 CreateHostStatusMessage(status, exit_code), 100 HostStatus status, HostExitCodes exit_code) { 112 ExitCodeToString(exit_code)); 115 host_status->AddElement(CreateSignature(status, exit_code).release()); 126 ServerLogEntry::MakeForHostStatus(status, exit_code)); 134 HostStatus status, HostExitCodes exit_code) { 154 message += std::string(" ") + ExitCodeToString(exit_code); [all...] |
/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/remoting/host/setup/ |
daemon_controller_delegate_linux.cc | 74 int* exit_code) { 75 DCHECK(exit_code); 107 if (!base::WaitForExitCodeWithTimeout(process_handle, exit_code, timeout)) { 118 int* exit_code) { 120 args, base::TimeDelta::FromMilliseconds(kDaemonTimeoutMs), exit_code); 134 int exit_code = 0; local 135 if (!RunHostScript(args, &exit_code)) { 142 if (exit_code == 0) { 177 int exit_code; local 180 &exit_code) || 229 int exit_code = 0; local 241 int exit_code = 0; local 262 int exit_code = 0; local [all...] |
/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);
|
/external/chromium_org/build/android/pylib/base/ |
test_dispatcher_unittest.py | 141 results, exit_code = test_dispatcher._RunAllTests( 144 self.assertEqual(exit_code, 0) 154 results, exit_code = test_dispatcher._RunAllTests( 157 self.assertEqual(exit_code, constants.ERROR_EXIT_CODE) 173 results, exit_code = TestShard._RunShard(MockRunner) 175 self.assertEqual(exit_code, 0) 178 results, exit_code = TestShard._RunShard(MockRunnerFail) 181 self.assertEqual(exit_code, constants.ERROR_EXIT_CODE) 184 results, exit_code = test_dispatcher.RunTests( 187 self.assertEqual(exit_code, constants.ERROR_EXIT_CODE [all...] |
/external/chromium_org/chrome/android/testshell/ |
chrome_main_delegate_testshell_android.cc | 28 bool ChromeMainDelegateTestShellAndroid::BasicStartupComplete(int* exit_code) { 30 return ChromeMainDelegateAndroid::BasicStartupComplete(exit_code);
|
chrome_main_delegate_testshell_android.h | 15 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
|
/ndk/tests/build/thin-archives/ |
build.sh | 39 EXIT_CODE=0 46 EXIT_CODE=1 56 EXIT_CODE=1 62 exit $EXIT_CODE
|
/external/chromium/base/ |
process_util.cc | 23 bool KillProcesses(const FilePath::StringType& executable_name, int exit_code, 29 result &= KillProcessById(entry->pid(), exit_code, true); 31 result &= KillProcess(entry->pid(), exit_code, true);
|
/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/remoting/host/installer/mac/PrivilegedHelperTools/ |
org.chromium.chromoting.me2me.sh | 91 EXIT_CODE="$?" 96 local SIGNAL=$(($EXIT_CODE - 128)) 99 elif [[ "$EXIT_CODE" -eq "0" || 100 "$EXIT_CODE" -eq "$SIGTERM_EXIT_CODE" || 101 "$EXIT_CODE" -eq "$PERMISSION_DENIED_PARENTAL_CONTROL" || 102 ("$EXIT_CODE" -ge "$MIN_PERMANENT_ERROR_EXIT_CODE" && \ 103 "$EXIT_CODE" -le "$MAX_PERMANENT_ERROR_EXIT_CODE") ]]; then 104 echo "Host returned permanent exit code $EXIT_CODE at ""$(date)""" 105 if [[ "$EXIT_CODE" -eq 101 ]]; then 115 exit "$EXIT_CODE" [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/ |
Test.pm | 90 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...] |