/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/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::__anon40173::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::__anon41764::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::__anon43278::exit_proc_event
|
/external/chromium_org/chrome/installer/setup/ |
setup_main.cc | 1745 int exit_code = 0; local 1765 DWORD exit_code = installer::UNKNOWN_STATUS; local [all...] |
/external/chromium_org/base/test/launcher/ |
test_launcher.cc | 234 int exit_code, 238 callback.Run(exit_code, elapsed_time, was_timeout, output); 296 int exit_code = LaunchChildTestProcessWithOptions( local 322 exit_code, 814 int exit_code, 820 callback.Run(exit_code, elapsed_time, was_timeout, output); 972 int exit_code = 0; local 974 &exit_code, [all...] |
/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/build/android/pylib/ |
cmd_helper.py | 93 exit_code = Call(args, cwd=cwd, stdout=tmpout, stderr=tmperr, shell=shell) 105 return (exit_code, stdout)
|
/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 | 308 int exit_code = -1; local 310 TestTimeouts::action_max_timeout(), &exit_code)); 311 EXPECT_EQ(0, exit_code); // Expect a clean shutdown. 344 int exit_code = -1; local 346 TestTimeouts::action_max_timeout(), &exit_code)); 347 EXPECT_EQ(0, exit_code); // Expect a clean shutdown. 372 int* exit_code) { 381 success = base::WaitForExitCodeWithTimeout(process_, exit_code, timeout);
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
chrome_desktop_impl.cc | 54 int exit_code; local 55 return base::GetTerminationStatus(process_id, &exit_code) !=
|
/external/chromium_org/content/browser/gpu/ |
gpu_data_manager_impl.cc | 194 base::TerminationStatus exit_code) { 196 private_->ProcessCrashed(exit_code);
|
/external/chromium_org/content/browser/ |
utility_process_host_impl.cc | 243 void UtilityProcessHostImpl::OnProcessCrashed(int exit_code) { 247 exit_code));
|
/external/chromium_org/content/zygote/ |
zygote_linux.h | 66 // status in |status| and the exit code in |exit_code|. 69 int* exit_code);
|