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

1 2

  /external/swiftshader/third_party/LLVM/lib/Support/Unix/
Unix.h 62 #ifndef WEXITSTATUS
63 # define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
  /external/fio/os/windows/posix/include/sys/
wait.h 7 #define WEXITSTATUS(a) 0
  /bionic/libc/include/bits/
wait.h 36 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
39 #define WSTOPSIG(s) WEXITSTATUS(s)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
wait.h 82 # define WEXITSTATUS(status) __WEXITSTATUS (__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 82 # define WEXITSTATUS(status) __WEXITSTATUS (__WAIT_INT (status))
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
wait.h 57 #define WEXITSTATUS(x) ((int)(((unsigned int)_W_INT(x)) >> 8) & 0xff)
  /external/ipsec-tools/src/racoon/
session.c 43 #ifndef WEXITSTATUS
44 # define WEXITSTATUS(s) ((unsigned)(s) >> 8)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdlib.h 85 # define WEXITSTATUS(status) __WEXITSTATUS (__WAIT_INT (status))
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/testsuite/
test-pexecute.c 59 #ifndef WEXITSTATUS
60 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
63 #define WSTOPSIG WEXITSTATUS
252 if (!WIFEXITED (status) || WEXITSTATUS (status) != EXIT_SUCCESS)
261 if (!WIFEXITED (status) || WEXITSTATUS (status) != EXIT_FAILURE)
299 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS
300 || !WIFEXITED (statuses[1]) || WEXITSTATUS (statuses[1]) != EXIT_SUCCESS)
317 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCESS
318 || !WIFEXITED (statuses[1]) || WEXITSTATUS (statuses[1]) != EXIT_SUCCESS)
335 if (!WIFEXITED (statuses[0]) || WEXITSTATUS (statuses[0]) != EXIT_SUCCES
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
private.h 91 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
97 #ifndef WEXITSTATUS
98 #define WEXITSTATUS(status) (((status) >> 8) & 0xff)
99 #endif /* !defined WEXITSTATUS */
  /bionic/libc/tzcode/
private.h 129 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
135 #ifndef WEXITSTATUS
136 #define WEXITSTATUS(status) (((status) >> 8) & 0xff)
137 #endif /* !defined WEXITSTATUS */
  /external/python/cpython3/Lib/test/test_asyncio/
test_unix_events.py 839 "WEXITSTATUS",
883 def WEXITSTATUS(self, status):
902 patch('os.WEXITSTATUS', self.WEXITSTATUS) as m_WEXITSTATUS, \
    [all...]
  /libcore/ojluni/src/main/native/
UNIXProcess_md.c 309 #ifndef WEXITSTATUS
310 #define WEXITSTATUS(status) (((status)>>8)&0xFF)
345 return WEXITSTATUS(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 364 #ifndef WEXITSTATUS
365 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
368 #define WSTOPSIG WEXITSTATUS
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
dllwrap.c 44 #ifndef WEXITSTATUS
45 #define WEXITSTATUS(w) (((w) >> 8) & 0377)
57 #ifndef WEXITSTATUS
58 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
421 if (WEXITSTATUS (wait_status) != 0)
423 warn (_("%s exited with status %d"), what, WEXITSTATUS (wait_status));
    [all...]
resrc.c 48 #ifndef WEXITSTATUS
49 #define WEXITSTATUS(w) (((w) >> 8) & 0377)
61 #ifndef WEXITSTATUS
62 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
299 if (WEXITSTATUS (wait_status) != 0)
302 WEXITSTATUS (wait_status));
    [all...]
dlltool.c 291 #ifndef WEXITSTATUS
292 #define WEXITSTATUS(w) (((w) >> 8) & 0377)
304 #ifndef WEXITSTATUS
305 #define WEXITSTATUS(w) (((w) & 0xff00) >> 8)
    [all...]
  /external/python/cpython2/Lib/plat-irix6/
WAIT.py 14 def WEXITSTATUS(stat): return ((_W_INT(stat)>>8)&0377)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 298 #ifndef WEXITSTATUS
299 #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 299 #ifndef WEXITSTATUS
300 #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
    [all...]
  /external/python/cpython3/Modules/
posixmodule.c 342 #ifndef WEXITSTATUS
343 #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
    [all...]
  /libcore/luni/src/main/java/android/system/
OsConstants.java 78 public static int WEXITSTATUS(int status) { return (status & 0xff00) >> 8; }
93 public static int WSTOPSIG(int status) { return WEXITSTATUS(status); }
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 

Completed in 1294 milliseconds

1 2