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

1 2

  /bionic/libc/include/sys/
wait.h 41 #define WTERMSIG(s) ((s) & 0x7f)
44 #define WIFEXITED(s) (WTERMSIG(s) == 0)
45 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /development/ndk/platforms/android-3/include/sys/
wait.h 40 #define WTERMSIG(s) ((s) & 0x7f)
43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
44 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /development/ndk/platforms/android-9/include/sys/
wait.h 41 #define WTERMSIG(s) ((s) & 0x7f)
44 #define WIFEXITED(s) (WTERMSIG(s) == 0)
45 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/sys/
wait.h 40 #define WTERMSIG(s) ((s) & 0x7f)
43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
44 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/sys/
wait.h 40 #define WTERMSIG(s) ((s) & 0x7f)
43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
44 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/sys/
wait.h 40 #define WTERMSIG(s) ((s) & 0x7f)
43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
44 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/sys/
wait.h 40 #define WTERMSIG(s) ((s) & 0x7f)
43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
44 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/sys/
wait.h 40 #define WTERMSIG(s) ((s) & 0x7f)
43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
44 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/sys/
wait.h 40 #define WTERMSIG(s) ((s) & 0x7f)
43 #define WIFEXITED(s) (WTERMSIG(s) == 0)
44 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f)
45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2)
  /dalvik/vm/native/
dalvik_system_Zygote.c 72 if (WTERMSIG(status) != SIGKILL) {
75 (int) pid, WTERMSIG(status));
80 (int) pid, WTERMSIG(status));
  /external/gtest/test/
gtest_test_utils.py 173 self._return_code = -os.WTERMSIG(ret_code)
  /system/core/logwrapper/
logwrapper.c 96 WTERMSIG(status));
  /development/simulator/wrapsim/
LaunchWrapper.c 210 printf("LW: process killed by signal %d", WTERMSIG(status));
  /external/clearsilver/util/
filter.c 42 r = WTERMSIG(r);
neo_server.c 198 ne_warn("pid %d exited on signal %d", child, WTERMSIG(status));
  /external/protobuf/gtest/test/
gtest_test_utils.py 249 self._return_code = -os.WTERMSIG(ret_code)
  /system/netd/
logwrapper.c 82 WTERMSIG(status));
  /system/vold/
logwrapper.c 82 WTERMSIG(status));
  /system/extras/tests/sdcard/
sysutil.cpp 221 snprintf(buffer, sizeof(buffer), "signaled (%d %s)", WTERMSIG(status), strsignal(WTERMSIG(status)));
  /system/core/sh/
jobs.c 417 if (WIFSTOPPED(st1) || ((st1 = WTERMSIG(st1) & 0x7f)
464 st = WTERMSIG(ps->status);
650 retval = WTERMSIG(status) + 128;
1012 st = WTERMSIG(status) + 128;
1025 if (WIFSIGNALED(status) && WTERMSIG(status) == SIGINT)
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 97 return WIFSIGNALED(exit_status) && WTERMSIG(exit_status) == signum_;
111 m << "Terminated by signal " << WTERMSIG(exit_code);
  /external/e2fsprogs/misc/
logsave.c 149 WTERMSIG(status));
  /libcore/luni/src/main/native/
java_lang_ProcessManager.cpp 82 status = WTERMSIG(status);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 333 #ifndef WTERMSIG
334 #define WTERMSIG(S) ((S) & 0x7f)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
system.h 333 #ifndef WTERMSIG
334 #define WTERMSIG(S) ((S) & 0x7f)

Completed in 1000 milliseconds

1 2