HomeSort by relevance Sort by last modified time
    Searched defs:WIFSIGNALED (Results 1 - 22 of 22) sorted by null

  /bionic/libc/include/sys/
wait.h 46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /development/ndk/platforms/android-3/include/sys/
wait.h 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /development/ndk/platforms/android-9/include/sys/
wait.h 46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/sys/
wait.h 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/sys/
wait.h 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/sys/
wait.h 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/sys/
wait.h 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/sys/
wait.h 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/sys/
wait.h 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/sys/
wait.h 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/sys/
wait.h 46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/sys/
wait.h 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/sys/
wait.h 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/sys/
wait.h 46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/sys/
wait.h 46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /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))
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
stdlib.h 89 # define WIFSIGNALED(status) __WIFSIGNALED(__WAIT_INT(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)
  /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...]
  /libcore/luni/src/main/java/libcore/io/
OsConstants.java 36 public static boolean WIFSIGNALED(int status) { return (WTERMSIG(status + 1) >= 2); }

Completed in 736 milliseconds