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

1 2 3 4

  /system/extras/tests/bionic/libc/other/
test_system.c 22 if (WEXITSTATUS(rv) != 0) {
24 WEXITSTATUS(rv));
  /bionic/libc/include/sys/
wait.h 39 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
42 #define WSTOPSIG(s) WEXITSTATUS(s)
  /development/ndk/platforms/android-3/include/sys/
wait.h 38 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
41 #define WSTOPSIG(s) WEXITSTATUS(s)
  /development/ndk/platforms/android-9/include/sys/
wait.h 39 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
42 #define WSTOPSIG(s) WEXITSTATUS(s)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/sys/
wait.h 38 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
41 #define WSTOPSIG(s) WEXITSTATUS(s)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/sys/
wait.h 38 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
41 #define WSTOPSIG(s) WEXITSTATUS(s)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/sys/
wait.h 38 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
41 #define WSTOPSIG(s) WEXITSTATUS(s)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/sys/
wait.h 38 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
41 #define WSTOPSIG(s) WEXITSTATUS(s)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/sys/
wait.h 38 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
41 #define WSTOPSIG(s) WEXITSTATUS(s)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/sys/
wait.h 38 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
41 #define WSTOPSIG(s) WEXITSTATUS(s)
  /external/bison/lib/
subpipe.c 54 #ifndef WEXITSTATUS
55 # define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8)
167 int status = WIFEXITED (wstatus) ? WEXITSTATUS (wstatus) : -1;
  /external/ppp/pppd/plugins/
passprompt.c 100 if (WEXITSTATUS(wstat))
101 warn("%s exited with code %d", promptprog, WEXITSTATUS(status));
  /external/elfutils/tests/
asm-tst4.c 81 result = WEXITSTATUS (system ("\
asm-tst5.c 93 result = WEXITSTATUS (system ("\
  /system/netd/
logwrapper.c 75 if (WEXITSTATUS(status) != 0) {
77 WEXITSTATUS(status));
79 return WEXITSTATUS(status);
  /system/vold/
logwrapper.c 75 if (WEXITSTATUS(status) != 0) {
77 WEXITSTATUS(status));
79 return WEXITSTATUS(status);
  /bionic/libc/tzcode/
private.h 97 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
103 #ifndef WEXITSTATUS
104 #define WEXITSTATUS(status) (((status) >> 8) & 0xff)
105 #endif /* !defined WEXITSTATUS */
  /external/chromium/third_party/icu/source/tools/tzcode/
private.h 97 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
103 #ifndef WEXITSTATUS
104 #define WEXITSTATUS(status) (((status) >> 8) & 0xff)
105 #endif /* !defined WEXITSTATUS */
  /external/gtest/test/
gtest_test_utils.py 114 # On Windows, os.WEXITSTATUS() doesn't work and os.system() returns
118 # On Unix, os.WEXITSTATUS() must be used to extract the exit status
121 return os.WEXITSTATUS(exit_code)
175 self._return_code = os.WEXITSTATUS(ret_code)
  /external/icu4c/tools/tzcode/
private.h 97 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
103 #ifndef WEXITSTATUS
104 #define WEXITSTATUS(status) (((status) >> 8) & 0xff)
105 #endif /* !defined WEXITSTATUS */
  /system/core/libcutils/
private.h 101 #include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
107 #ifndef WEXITSTATUS
108 #define WEXITSTATUS(status) (((status) >> 8) & 0xff)
109 #endif /* !defined WEXITSTATUS */
  /external/webkit/WebKitTools/Scripts/
resolve-ChangeLogs 211 die $! if WEXITSTATUS($?);
302 if (WEXITSTATUS($?) == 0) {
322 die $! if WEXITSTATUS($?);
364 die $! if WEXITSTATUS($?);
370 die $! if WEXITSTATUS($?);
497 die $! if WEXITSTATUS($?);
500 die $! if WEXITSTATUS($?);
  /bootable/recovery/
install.c 154 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
155 LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status));
  /external/oprofile/daemon/
init.c 298 if (WIFEXITED(child_status) && (!WEXITSTATUS(child_status))) {
302 WEXITSTATUS(child_status));
  /external/protobuf/gtest/test/
gtest_test_utils.py 180 # On Windows, os.WEXITSTATUS() doesn't work and os.system() returns
184 # On Unix, os.WEXITSTATUS() must be used to extract the exit status
187 return os.WEXITSTATUS(exit_code)
251 self._return_code = os.WEXITSTATUS(ret_code)

Completed in 374 milliseconds

1 2 3 4