HomeSort by relevance Sort by last modified time
    Searched refs:WIFSIGNALED (Results 26 - 50 of 74) sorted by null

12 3

  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/sys/
wait.h 46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/sys/
wait.h 46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /system/extras/tests/bionic/libc/common/
test_executable_destructor.c 95 if (!WIFSIGNALED(status)) {
  /external/oprofile/libutil++/
child_reader.cpp 232 first_error = WEXITSTATUS(ret) | WIFSIGNALED(ret);
233 } else if (WIFSIGNALED(ret)) {
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
wait.h 86 # define WIFSIGNALED(status) __WIFSIGNALED(__WAIT_INT(status))
  /external/gtest/test/
gtest_test_utils.py 172 if os.WIFSIGNALED(ret_code):
  /external/valgrind/main/memcheck/tests/
addressable.c 140 if (WIFSIGNALED(status)) {
  /external/valgrind/main/none/tests/
async-sigs.c 117 } else if (!WIFSIGNALED(status) || WTERMSIG(status) != fatalsig) {
  /system/core/logwrapper/
logwrapper.c 94 else if (WIFSIGNALED(status))
  /external/protobuf/gtest/test/
gtest_test_utils.py 248 if os.WIFSIGNALED(ret_code):
  /system/vold/
logwrapper.c 80 } else if (WIFSIGNALED(status))
  /ndk/sources/host-tools/make-3.81/
job.c 149 # ifndef WIFSIGNALED
150 # define WIFSIGNALED(x) (WTERMSIG (x) != 0)
168 # ifndef WIFSIGNALED
169 # define WIFSIGNALED(x) (WTERMSIG(x) != 0)
575 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0;
610 exit_sig = WIFSIGNALED (status) ? WTERMSIG (status) : 0;
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 97 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_;
110 } else if (WIFSIGNALED(exit_code)) {
  /external/chromium/testing/gtest/test/
gtest_test_utils.py 276 if os.WIFSIGNALED(ret_code):
  /external/e2fsprogs/misc/
logsave.c 215 if (WIFSIGNALED(status)) {
  /libcore/luni/src/main/java/java/lang/
ProcessManager.java 92 } else if (WIFSIGNALED(status.value)) {
  /system/extras/tests/lib/testUtil/
testUtil.c 427 if (WIFSIGNALED(status)) {
  /system/netd/
logwrapper.c 80 } else if (WIFSIGNALED(status))
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 330 #ifndef WIFSIGNALED
331 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
system.h 330 #ifndef WIFSIGNALED
331 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
system.h 330 #ifndef WIFSIGNALED
331 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
  /dalvik/vm/native/
dalvik_system_Zygote.cpp 74 } else if (WIFSIGNALED(status)) {
  /external/dnsmasq/src/
helper.c 181 if (WIFSIGNALED(status))
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 436 } else if (WIFSIGNALED(status)) {
  /system/extras/tests/sdcard/
sysutil.cpp 219 else if (WIFSIGNALED(status))

Completed in 671 milliseconds

12 3