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

1 2 3 4 5 6 7 8 91011>>

  /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/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...]
  /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/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/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/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/remoting/host/
host_exit_codes.cc 24 const char* ExitCodeToString(HostExitCodes exit_code) {
25 return ValueToName(kHostExitCodeStrings, exit_code);
host_status_sender.cc 71 void HostStatusSender::SendOfflineStatus(HostExitCodes exit_code) {
72 SendHostStatus(OFFLINE, exit_code);
80 HostExitCodes exit_code) {
90 CreateHostStatusMessage(status, exit_code),
101 HostStatus status, HostExitCodes exit_code) {
113 ExitCodeToString(exit_code));
116 host_status->AddElement(CreateSignature(status, exit_code).release());
127 MakeLogEntryForHostStatus(status, exit_code));
135 HostStatus status, HostExitCodes exit_code) {
155 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/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/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/third_party/skia/platform_tools/android/bin/
android_run_skia 37 EXIT_CODE=`$ADB ${DEVICE_SERIAL} shell cat ${STATUS_FILENAME}`
41 if [[ ${EXIT_CODE} == *${STATUS_FILENAME}* ]]; then
48 echo "EXIT_CODE is ${EXIT_CODE}"
49 if [ $'0\r' != "${EXIT_CODE}" ]; then
  /external/skia/platform_tools/android/bin/
android_run_skia 33 EXIT_CODE=`$ADB ${DEVICE_SERIAL} shell cat ${STATUS_FILENAME}`
37 if [[ ${EXIT_CODE} == *${STATUS_FILENAME}* ]]; then
44 echo "EXIT_CODE is ${EXIT_CODE}"
45 if [ $'0\r' != "${EXIT_CODE}" ]; then
  /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/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...]
  /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/sandbox/linux/services/
scoped_process_unittest.cc 31 void ExitWithCode(int exit_code) { _exit(exit_code); }
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/build/android/pylib/base/
test_dispatcher_unittest.py 147 results, exit_code = test_dispatcher._RunAllTests(
150 self.assertEqual(exit_code, 0)
160 results, exit_code = test_dispatcher._RunAllTests(
163 self.assertEqual(exit_code, constants.ERROR_EXIT_CODE)
179 results, exit_code = TestShard._RunShard(MockRunner)
181 self.assertEqual(exit_code, 0)
184 results, exit_code = TestShard._RunShard(MockRunnerFail)
187 self.assertEqual(exit_code, constants.ERROR_EXIT_CODE)
190 results, exit_code = test_dispatcher.RunTests(
193 self.assertEqual(exit_code, constants.ERROR_EXIT_CODE
    [all...]
  /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_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...]

Completed in 806 milliseconds

1 2 3 4 5 6 7 8 91011>>