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

1 2 34 5 6 7 8 91011>>

  /ndk/sources/third_party/googletest/googletest/test/
gtest_help_test.py 95 return child.exit_code, child.output
111 exit_code, output = RunWithFlag(flag)
112 self.assertEquals(0, exit_code)
135 exit_code, output = RunWithFlag(flag)
136 self.assert_(exit_code != 0)
  /external/chromium_org/chrome/browser/component_updater/
component_patcher_win.cc 102 int exit_code = 0; local
104 !base::WaitForExitCode(ph, &exit_code)) {
109 *error = exit_code;
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
tcpdump_profiler.py 65 exit_code = self._proc.wait()
67 if exit_code:
70 (exit_code, self._GetStdOut()))
  /external/compiler-rt/lib/msan/
msan_linux.cc 79 _exit(flags()->exit_code);
85 if (flags()->exit_code)
86 _exit(flags()->exit_code);
  /external/chromium/base/win/
event_trace_consumer_unittest.cc 152 DWORD exit_code = 0;
153 if (::GetExitCodeThread(consumer_thread_, &exit_code))
154 return exit_code;
172 DWORD exit_code = 0;
173 if (::GetExitCodeThread(consumer_thread_, &exit_code))
174 return exit_code;
  /external/chromium_org/base/win/
event_trace_consumer_unittest.cc 178 DWORD exit_code = 0;
179 if (::GetExitCodeThread(consumer_thread_, &exit_code))
180 return exit_code;
198 DWORD exit_code = 0;
199 if (::GetExitCodeThread(consumer_thread_, &exit_code))
200 return exit_code;
  /external/chromium_org/chrome/browser/first_run/
upgrade_util_win.cc 61 DWORD exit_code; local
62 ::GetExitCodeProcess(handle, &exit_code);
64 if (exit_code == installer::RENAME_SUCCESSFUL)
231 DWORD exit_code; local
232 ::GetExitCodeProcess(handle, &exit_code);
234 if (exit_code == installer::RENAME_SUCCESSFUL)
  /external/chromium_org/sandbox/win/tests/common/
controller.cc 55 DWORD exit_code = 0; local
56 if (::GetExitCodeProcess(process, &exit_code))
57 return exit_code == STILL_ACTIVE;
256 DWORD exit_code = SBOX_TEST_LAST_RESULT; local
257 if (!::GetExitCodeProcess(target.hProcess, &exit_code)) {
266 return exit_code;
  /external/chromium/base/
process_util_win.cc 313 bool KillProcessById(ProcessId process_id, int exit_code, bool wait) {
322 bool ret = KillProcess(process, exit_code, wait);
400 bool KillProcess(ProcessHandle process, int exit_code, bool wait) {
401 bool result = (TerminateProcess(process, exit_code) != FALSE);
412 TerminationStatus GetTerminationStatus(ProcessHandle handle, int* exit_code) {
417 if (exit_code) {
424 // to leave exit_code uninitialized, since that could cause
427 *exit_code = kNormalTerminationExitCode;
436 if (exit_code)
437 *exit_code = wait_result
    [all...]
  /external/chromium_org/chrome/installer/setup/
uninstall.h 29 // if successful, otherwise false. The error code is set in |exit_code|.
36 InstallStatus* exit_code);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
chromium_unittest.py 51 port._executive = MockExecutive2(exit_code=0)
55 port._executive = MockExecutive2(exit_code=1,
  /external/chromium_org/ipc/
ipc_channel_posix_unittest.cc 252 int exit_code = 0; local
253 EXPECT_TRUE(base::WaitForExitCode(handle, &exit_code));
254 EXPECT_EQ(0, exit_code);
292 int exit_code = 0; local
293 EXPECT_TRUE(base::WaitForExitCode(handle2, &exit_code));
294 EXPECT_EQ(0, exit_code);
340 int exit_code = 0; local
341 EXPECT_TRUE(base::WaitForExitCode(handle2, &exit_code));
342 EXPECT_EQ(exit_code, 0);
350 EXPECT_TRUE(base::WaitForExitCode(handle, &exit_code));
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive.py 52 exit_code=None,
62 if exit_code:
63 message += " exit_code: %d" % exit_code
72 self.exit_code = exit_code
131 exit_code = self._run_command_with_teed_output(args, child_stdout, **kwargs)
141 if exit_code:
143 exit_code=exit_code,
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
screen_observer.h 44 virtual void OnExit(ExitCodes exit_code) = 0;
  /external/chromium_org/android_webview/lib/main/
aw_main_delegate.h 33 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
  /external/chromium_org/content/public/app/
content_main_delegate.cc 17 bool ContentMainDelegate::BasicStartupComplete(int* exit_code) {
  /external/chromium_org/content/public/browser/
gpu_data_manager_observer.h 36 virtual void OnGpuProcessCrashed(base::TerminationStatus exit_code) {}
  /external/chromium_org/remoting/host/
daemon_process_win.cc 56 virtual void OnPermanentError(int exit_code) OVERRIDE;
108 void DaemonProcessWin::OnPermanentError(int exit_code) {
112 if (exit_code == kInvalidHostIdExitCode)
115 DaemonProcess::OnPermanentError(exit_code);
  /external/chromium_org/remoting/tools/
verify_resources.py 136 exit_code = 0
139 exit_code = 1
150 if exit_code == 0:
155 return exit_code
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
multicommandtool_unittest.py 85 exit_code = OutputCapture().assert_outputs(self, two_required_arguments.check_arguments_and_execute, [None, ["foo"], TrivialTool()], expected_logs=expected_logs)
86 self.assertEqual(exit_code, 1)
125 exit_code = OutputCapture().assert_outputs(self, tool.main, [main_args], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
126 self.assertEqual(exit_code, expected_exit_code)
  /external/chromium/testing/gtest/test/
gtest_test_utils.py 172 def GetExitStatus(exit_code):
176 exit_code: the result value of os.system(command).
182 return exit_code
186 if os.WIFEXITED(exit_code):
187 return os.WEXITSTATUS(exit_code)
212 exit_code The code with which the child process exited.
288 self.exit_code = self._return_code
  /external/chromium_org/content/public/test/
test_launcher.cc 78 int exit_code = DoRunTestInternal(test_case, local
83 if (exit_code != 0)
84 return exit_code;
98 int exit_code = base::LaunchChildGTestProcess( local
108 return exit_code;
226 int exit_code = DoRunTest(launcher_delegate_, local
237 result.success = (exit_code == 0);
  /external/chromium_org/testing/gtest/test/
gtest_test_utils.py 172 def GetExitStatus(exit_code):
176 exit_code: the result value of os.system(command).
182 return exit_code
186 if os.WIFEXITED(exit_code):
187 return os.WEXITSTATUS(exit_code)
212 exit_code The code with which the child process exited.
288 self.exit_code = self._return_code
  /external/gtest/test/
gtest_test_utils.py 172 def GetExitStatus(exit_code):
176 exit_code: the result value of os.system(command).
182 return exit_code
186 if os.WIFEXITED(exit_code):
187 return os.WEXITSTATUS(exit_code)
212 exit_code The code with which the child process exited.
288 self.exit_code = self._return_code
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_test_utils.py 172 def GetExitStatus(exit_code):
176 exit_code: the result value of os.system(command).
182 return exit_code
186 if os.WIFEXITED(exit_code):
187 return os.WEXITSTATUS(exit_code)
212 exit_code The code with which the child process exited.
288 self.exit_code = self._return_code

Completed in 1039 milliseconds

1 2 34 5 6 7 8 91011>>