HomeSort by relevance Sort by last modified time
    Searched refs:exit_code (Results 276 - 300 of 353) sorted by null

<<1112131415

  /external/chromium_org/content/public/test/
browser_test_utils.h 258 int exit_code) OVERRIDE;
  /external/chromium_org/content/shell/browser/
webkit_test_controller.h 148 virtual void OnGpuProcessCrashed(base::TerminationStatus exit_code) OVERRIDE;
  /external/chromium_org/sandbox/win/sandbox_poc/
main_ui_window.cc 377 DWORD exit_code = 0; local
378 if (!GetExitCodeProcess(target_.hProcess, &exit_code)) {
379 exit_code = 0xFFFF; // Default exit code
385 AddDebugMessage(L"Targed exited with return code %d", exit_code);
  /external/chromium_org/testing/gtest/test/
gtest_color_test.py 67 return not p.exited or p.exit_code
  /external/chromium_org/v8/test/mozilla/
testcfg.py 115 if output.exit_code != 0:
  /external/chromium_org/v8/test/test262/
testcfg.py 88 if output.exit_code != 0:
  /external/compiler-rt/lib/msan/
msan_interface_internal.h 30 // This function can die based on flags()->exit_code.
104 void __msan_set_exit_code(int exit_code);
  /external/gtest/test/
gtest_color_test.py 67 return not p.exited or p.exit_code
  /external/protobuf/gtest/test/
gtest_color_test.py 67 return not p.exited or p.exit_code
  /ndk/sources/third_party/googletest/googletest/test/
gtest_color_test.py 67 return not p.exited or p.exit_code
  /external/chromium_org/chrome/browser/service_process/
service_process_control.cc 360 int exit_code = 0; local
362 base::WaitForExitCodeWithTimeout(process_handle_, &exit_code,
  /external/iproute2/misc/
lnstat.c 53 static int usage(char *name, int exit_code)
75 exit(exit_code);
  /external/valgrind/main/tests/
vg_regtest 345 my $exit_code = system($_[0]);
346 ($exit_code == 2) and exit 1; # 2 is SIGINT
347 return $exit_code;
vg_regtest.in 345 my $exit_code = system($_[0]);
346 ($exit_code == 2) and exit 1; # 2 is SIGINT
347 return $exit_code;
  /ndk/sources/host-tools/make-3.81/w32/subproc/
sub_proc.c 44 int exit_code; member in struct:sub_process_t
97 if (fake_exits_pending && proc_array[i]->exit_code)
210 return (((sub_process *)proc)->exit_code);
797 pproc->exit_code = ierr;
895 pproc->exit_code = ierr;
1245 ((sub_process*) hProcess)->exit_code = process_last_err(hProcess);
  /external/chromium_org/components/nacl/browser/
nacl_process_host.cc 298 int exit_code = 0; local
299 process_->GetTerminationStatus(false /* known_dead */, &exit_code);
302 exit_code, exit_code);
303 if (exit_code == 0) {
    [all...]
  /external/chromium_org/content/browser/gpu/
gpu_process_host.cc 459 int exit_code; local
461 false /* known_dead */, &exit_code);
469 exit_code,
480 exit_code);
913 void GpuProcessHost::OnProcessCrashed(int exit_code) {
    [all...]
  /external/qemu/target-i386/
svm_helper.c 57 uint32_t exit_code, uint64_t exit_info_1)
483 /* Note: currently only 32 bits of exit_code are used */
485 uint32_t exit_code, uint64_t exit_info_1)
490 exit_code, exit_info_1,
582 stq_phys(env->vm_vmcb + offsetof(struct vmcb, control.exit_code), exit_code);
  /external/chromium_org/base/memory/
shared_memory_unittest.cc 671 int exit_code = 0; local
673 EXPECT_TRUE(WaitForExitCode(handles[index], &exit_code));
674 EXPECT_EQ(0, exit_code);
  /external/chromium_org/chrome/browser/printing/cloud_print/test/
cloud_print_proxy_process_browsertest.cc 484 int exit_code = -100; local
486 base::WaitForExitCodeWithTimeout(handle, &exit_code,
489 EXPECT_EQ(exit_code, 0);
  /external/chromium_org/chrome/installer/util/
install_util.cc 163 bool InstallUtil::ExecuteExeAsAdmin(const CommandLine& cmd, DWORD* exit_code) {
197 if (exit_code)
198 *exit_code = ret_val;
  /external/chromium_org/chrome/tools/build/win/
create_installer_archive.py 185 exit_code = subprocess.call(cmd, **kw)
186 if (exit_code != 0):
187 raise Exception("Error while running cmd: %s, exit_code: %s" %
188 (cmd, exit_code))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftestsrunner.py 213 exit_code = self._generate_results()
214 if exit_code:
215 return exit_code
  /external/chromium_org/chrome/browser/component_updater/
component_patcher_operation.cc 338 void DeltaUpdateOpPatchHost::OnProcessCrashed(int exit_code) {
344 exit_code));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
base.py 381 local_error.exit_code = script_error.exit_code
384 if local_error.exit_code:
502 exit_code = self._executive.run_command(comand, return_exit_code=True)
503 if exit_code == 0:
506 elif exit_code == 1:
509 err_str = "Image diff returned an exit code of %s. See http://crbug.com/278596" % exit_code
    [all...]

Completed in 1941 milliseconds

<<1112131415