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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/win8/delegate_execute/
chrome_util.cc 243 int exit_code = 0; local
245 if (!base::WaitForExitCode(process_handle, &exit_code)) {
248 } else if (exit_code != kExitCodeRenameSuccessful) {
250 __FUNCTION__, exit_code);
  /external/compiler-rt/include/sanitizer/
lsan_interface.h 38 // are memory leaks and the exit_code flag is non-zero.
  /external/gtest/include/gtest/
gtest-death-test.h 83 // bool KilledBySIGHUP(int exit_code) {
84 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
181 explicit ExitedWithCode(int exit_code);
  /external/gtest/test/
gtest_uninitialized_test.py 60 AssertEq(1, p.exit_code)
  /external/kernel-headers/original/linux/
binfmts.h 87 extern int do_coredump(long signr, int exit_code, struct pt_regs * regs);
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest-death-test.h 83 // bool KilledBySIGHUP(int exit_code) {
84 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
181 explicit ExitedWithCode(int exit_code);
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_uninitialized_test.py 60 AssertEq(1, p.exit_code)
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-death-test.h 83 // bool KilledBySIGHUP(int exit_code) {
84 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
181 explicit ExitedWithCode(int exit_code);
  /external/mesa3d/src/gtest/include/gtest/
gtest-death-test.h 83 // bool KilledBySIGHUP(int exit_code) {
84 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
181 explicit ExitedWithCode(int exit_code);
  /external/open-vcdiff/gtest/include/gtest/
gtest-death-test.h 83 // bool KilledBySIGHUP(int exit_code) {
84 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
181 explicit ExitedWithCode(int exit_code);
  /external/protobuf/gtest/include/gtest/
gtest-death-test.h 83 // bool KilledBySIGHUP(int exit_code) {
84 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
181 explicit ExitedWithCode(int exit_code);
  /external/protobuf/gtest/test/
gtest_uninitialized_test.py 60 AssertEq(1, p.exit_code)
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 232 DWORD exit_code; local
233 if (!GetExitCodeProcess(child_handle_, &exit_code)) {
241 if (exit_code != 0) {
243 "Plugin failed with status code $0.", exit_code);
  /ndk/sources/third_party/googletest/googletest/include/gtest/
gtest-death-test.h 94 // bool KilledBySIGHUP(int exit_code) {
95 // return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
192 explicit ExitedWithCode(int exit_code);
  /ndk/sources/third_party/googletest/googletest/test/
gtest_uninitialized_test.py 60 AssertEq(1, p.exit_code)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cn_proc.h 95 __u32 exit_code, exit_signal; member in struct:proc_event::__anon39285::exit_proc_event
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cn_proc.h 95 __u32 exit_code, exit_signal; member in struct:proc_event::__anon40876::exit_proc_event
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cn_proc.h 95 __u32 exit_code, exit_signal; member in struct:proc_event::__anon42390::exit_proc_event
  /external/chromium/chrome/browser/
utility_process_host.cc 191 void UtilityProcessHost::OnProcessCrashed(int exit_code) {
194 NewRunnableMethod(client_.get(), &Client::OnProcessCrashed, exit_code));
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 83 ExitedWithCode::ExitedWithCode(int exit_code) : exit_code_(exit_code) {
106 static String ExitSummary(int exit_code) {
108 if (WIFEXITED(exit_code)) {
109 m << "Exited with exit status " << WEXITSTATUS(exit_code);
110 } else if (WIFSIGNALED(exit_code)) {
111 m << "Terminated by signal " << WTERMSIG(exit_code);
114 if (WCOREDUMP(exit_code)) {
  /external/chromium_org/chrome/installer/util/
product.h 97 // The status of Chrome at the return of the function is given by exit_code.
102 int32* exit_code) const;
  /external/chromium_org/chrome/test/automation/
proxy_launcher.cc 307 int exit_code = -1; local
309 TestTimeouts::action_max_timeout(), &exit_code));
310 EXPECT_EQ(0, exit_code); // Expect a clean shutdown.
343 int exit_code = -1; local
345 TestTimeouts::action_max_timeout(), &exit_code));
346 EXPECT_EQ(0, exit_code); // Expect a clean shutdown.
371 int* exit_code) {
380 success = base::WaitForExitCodeWithTimeout(process_, exit_code, timeout);
  /external/chromium_org/content/browser/gpu/
gpu_data_manager_impl.cc 189 base::TerminationStatus exit_code) {
191 private_->ProcessCrashed(exit_code);
  /external/chromium_org/v8/tools/
android-run.py 58 exit_code = process.wait()
67 return exit_code or Check(output, errors)
nacl-run.py 53 exit_code = process.wait()
62 return exit_code or Check(output, errors)

Completed in 910 milliseconds

1 2 3 4 5 6 78 91011>>