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

  /external/fio/os/windows/posix/include/sys/
wait.h 6 #define WTERMSIG(a) 0
  /bionic/libc/include/bits/
wait.h 38 #define WTERMSIG(s) ((s) & 0x7f)
41 #define WIFEXITED(s) (WTERMSIG(s) == 0)
42 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
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 83 # define WTERMSIG(status) __WTERMSIG (__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 83 # define WTERMSIG(status) __WTERMSIG (__WAIT_INT (status))
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
wait.h 55 #define WTERMSIG(x) (_WSTATUS(x))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdlib.h 86 # define WTERMSIG(status) __WTERMSIG (__WAIT_INT (status))
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/testsuite/
test-pexecute.c 53 #ifndef WTERMSIG
54 #define WTERMSIG(S) ((S) & 0x7f)
272 if (!WIFSIGNALED (status) || WTERMSIG (status) != SIGABRT)
  /external/python/cpython3/Lib/test/test_asyncio/
test_unix_events.py 840 "WTERMSIG",
887 def WTERMSIG(self, status):
901 with patch('os.WTERMSIG', self.WTERMSIG) as m_WTERMSIG, \
    [all...]
  /libcore/ojluni/src/main/native/
UNIXProcess_md.c 317 #ifndef WTERMSIG
318 #define WTERMSIG(status) ((status)&0x7F)
355 return WTERMSIG(status);
357 return 0x80 + WTERMSIG(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 358 #ifndef WTERMSIG
359 #define WTERMSIG(S) ((S) & 0x7f)
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
dllwrap.c 41 #ifndef WTERMSIG
42 #define WTERMSIG(w) ((w) & 0177)
54 #ifndef WTERMSIG
55 #define WTERMSIG(w) ((w) & 0x7f)
416 warn (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
    [all...]
resrc.c 45 #ifndef WTERMSIG
46 #define WTERMSIG(w) ((w) & 0177)
58 #ifndef WTERMSIG
59 #define WTERMSIG(w) ((w) & 0x7f)
294 fatal (_("subprocess got fatal signal %d"), WTERMSIG (wait_status));
    [all...]
dlltool.c 288 #ifndef WTERMSIG
289 #define WTERMSIG(w) ((w) & 0177)
301 #ifndef WTERMSIG
302 #define WTERMSIG(w) ((w) & 0x7f)
    [all...]
  /external/python/cpython2/Lib/plat-irix6/
WAIT.py 16 def WTERMSIG(stat): return (_W_INT(stat)&0177)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 302 #ifndef WTERMSIG
303 #define WTERMSIG(u_wait) ((u_wait).w_termsig)
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 303 #ifndef WTERMSIG
304 #define WTERMSIG(u_wait) ((u_wait).w_termsig)
    [all...]
  /external/python/cpython3/Modules/
posixmodule.c 346 #ifndef WTERMSIG
347 #define WTERMSIG(u_wait) ((u_wait).w_termsig)
    [all...]
  /libcore/luni/src/main/java/android/system/
OsConstants.java 88 public static int WTERMSIG(int status) { return status & 0x7f; }
98 public static boolean WIFEXITED(int status) { return (WTERMSIG(status) == 0); }
103 public static boolean WIFSTOPPED(int status) { return (WTERMSIG(status) == 0x7f); }
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 457 milliseconds