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

<<111213141516

  /external/chromium/chrome/browser/web_resource/
web_resource_service.cc 154 virtual void OnProcessCrashed(int exit_code) {
  /external/chromium_org/chrome/browser/chromeos/login/
wizard_controller.h 207 virtual void OnExit(ExitCodes exit_code) OVERRIDE;
wizard_controller.cc 731 void WizardController::OnExit(ExitCodes exit_code) {
732 LOG(INFO) << "Wizard screen exit code: " << exit_code;
733 switch (exit_code) {
  /external/chromium_org/chrome/browser/extensions/
sandboxed_unpacker.h 178 virtual void OnProcessCrashed(int exit_code) OVERRIDE;
  /external/chromium_org/chrome/installer/util/
install_util.h 43 static bool ExecuteExeAsAdmin(const CommandLine& cmd, DWORD* exit_code);
install_util.cc 156 bool InstallUtil::ExecuteExeAsAdmin(const CommandLine& cmd, DWORD* exit_code) {
190 if (exit_code)
191 *exit_code = ret_val;
user_experiment.cc 503 int32 exit_code = 0; local
504 if (!product.LaunchChromeAndWait(application_path, options, &exit_code))
509 switch (exit_code) {
  /external/chromium_org/chrome_frame/test/
test_with_web_server.cc 220 DWORD exit_code = 0; local
221 if (!::GetExitCodeProcess(browser_handle_, &exit_code) ||
222 exit_code == STILL_ACTIVE) {
223 LOG(ERROR) << L"Forcefully killing browser process. Exit:" << exit_code; local
    [all...]
chrome_frame_test_utils.h 356 bool KillProcesses(const std::wstring& executable_name, int exit_code,
  /external/chromium_org/content/browser/gpu/
gpu_process_host.h 148 virtual void OnProcessCrashed(int exit_code) OVERRIDE;
  /external/chromium_org/v8/tools/testrunner/local/
testsuite.py 160 return output.exit_code != 0
  /external/chromium_org/win8/metro_driver/
chrome_app_view.cc 643 DWORD exit_code = globals.host_main(globals.host_context); local
645 DVLOG(1) << "host thread done, exit_code=" << exit_code;
647 return exit_code;
    [all...]
  /external/compiler-rt/include/sanitizer/
asan_interface.h 72 int __asan_set_error_exit_code(int exit_code);
  /external/chromium/chrome/browser/chromeos/login/
wizard_controller.cc 794 void WizardController::OnExit(ExitCodes exit_code) {
795 LOG(INFO) << "Wizard screen exit code: " << exit_code;
796 switch (exit_code) {
  /external/chromium/testing/gtest/test/
gtest_filter_unittest.py 201 return (tests_run, p.exit_code)
316 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
318 self.assertEqual(0, exit_code)
  /external/chromium_org/chrome/test/ui/
ui_test.cc 403 int exit_code = -1; local
405 TestTimeouts::action_max_timeout(), &exit_code));
406 EXPECT_EQ(0, exit_code); // Expect a clean shutown.
  /external/chromium_org/testing/gtest/test/
gtest_filter_unittest.py 201 return (tests_run, p.exit_code)
316 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
318 self.assertEqual(0, exit_code)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
run_webkit_tests.py 81 if run_details.exit_code != -1:
85 return run_details.exit_code
348 _log.debug("Testing completed, Exit status: %d" % run_details.exit_code)
  /external/gtest/test/
gtest_filter_unittest.py 201 return (tests_run, p.exit_code)
316 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
318 self.assertEqual(0, exit_code)
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_filter_unittest.py 201 return (tests_run, p.exit_code)
316 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
318 self.assertEqual(0, exit_code)
  /ndk/sources/third_party/googletest/googletest/test/
gtest_filter_unittest.py 201 return (tests_run, p.exit_code)
316 (tests_run, exit_code) = RunWithSharding(total_shards, i, args)
318 self.assertEqual(0, exit_code)
  /external/chromium_org/chrome/browser/metrics/
metrics_service.cc 312 int MapCrashExitCodeForHistogram(int exit_code) {
317 if (exit_code == STATUS_GUARD_PAGE_VIOLATION)
321 return std::abs(exit_code);
704 host, process_details->status, process_details->exit_code);
    [all...]
  /external/chromium_org/chrome_frame/test/perf/
chrome_frame_perftest.cc     [all...]
  /external/chromium_org/content/browser/
plugin_process_host.cc 315 void PluginProcessHost::OnProcessCrashed(int exit_code) {
  /external/chromium_org/remoting/host/
daemon_process.cc 129 void DaemonProcess::OnPermanentError(int exit_code) {

Completed in 1120 milliseconds

<<111213141516