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

  /external/fio/os/windows/posix/include/sys/
wait.h 4 #define WIFSIGNALED(a) 0
  /bionic/libc/include/bits/
wait.h 43 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
wait.h 86 # define WIFSIGNALED(status) __WIFSIGNALED (__WAIT_INT (status))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
wait.h 86 # define WIFSIGNALED(status) __WIFSIGNALED (__WAIT_INT (status))
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
wait.h 54 #define WIFSIGNALED(x) (_WSTATUS(x) != _WSTOPPED && _WSTATUS(x) != 0)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdlib.h 89 # define WIFSIGNALED(status) __WIFSIGNALED (__WAIT_INT (status))
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/testsuite/
test-pexecute.c 50 #ifndef WIFSIGNALED
51 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
272 if (!WIFSIGNALED (status) || WTERMSIG (status) != SIGABRT)
  /external/python/cpython3/Lib/test/test_asyncio/
test_unix_events.py 838 "WIFSIGNALED",
880 def WIFSIGNALED(self, status):
888 self.assertTrue(self.WIFSIGNALED(status))
903 patch('os.WIFSIGNALED', self.WIFSIGNALED) as m_WIFSIGNALED, \
    [all...]
  /libcore/ojluni/src/main/native/
UNIXProcess_md.c 313 #ifndef WIFSIGNALED
314 #define WIFSIGNALED(status) (((status)&0xFF) > 0 && ((status)&0xFF00) == 0)
346 } else if (WIFSIGNALED(status)) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 355 #ifndef WIFSIGNALED
356 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
dllwrap.c 38 #ifndef WIFSIGNALED
39 #define WIFSIGNALED(w) (((w)&0377) != 0177 && ((w)&~0377) == 0)
51 #ifndef WIFSIGNALED
52 #define WIFSIGNALED(w) (((w) & 0xff) != 0 && ((w) & 0xff) != 0x7f)
414 else if (WIFSIGNALED (wait_status))
    [all...]
resrc.c 42 #ifndef WIFSIGNALED
43 #define WIFSIGNALED(w) (((w)&0377) != 0177 && ((w)&~0377) == 0)
55 #ifndef WIFSIGNALED
56 #define WIFSIGNALED(w) (((w) & 0xff) != 0 && ((w) & 0xff) != 0x7f)
292 else if (WIFSIGNALED (wait_status))
    [all...]
dlltool.c 285 #ifndef WIFSIGNALED
286 #define WIFSIGNALED(w) (((w) & 0377) != 0177 && ((w) & ~0377) == 0)
298 #ifndef WIFSIGNALED
299 #define WIFSIGNALED(w) (((w) & 0xff) != 0 && ((w) & 0xff) != 0x7f)
    [all...]
  /libcore/luni/src/main/java/android/system/
OsConstants.java 81 * Tests whether the child dumped core. Only valid if WIFSIGNALED returns true.
86 * Returns the signal that caused the child to exit. Only valid if WIFSIGNALED returns true.
108 public static boolean WIFSIGNALED(int status) { return (WTERMSIG(status + 1) >= 2); }
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/current/
core.jar 

Completed in 503 milliseconds