HomeSort by relevance Sort by last modified time
    Searched refs:strsignal (Results 51 - 75 of 78) sorted by null

1 23 4

  /external/bison/darwin-lib/
string.h 48 /* NetBSD 5.0 declares strsignal in <unistd.h>, not in <string.h>. */
1316 # undef strsignal macro
    [all...]
  /external/bison/linux-lib/
string.h 48 /* NetBSD 5.0 declares strsignal in <unistd.h>, not in <string.h>. */
1316 # undef strsignal macro
    [all...]
  /bionic/tests/
string_test.cpp 46 #if __BIONIC__ // glibc's strerror isn't thread safe, only its strsignal.
90 TEST(string, strsignal) {
92 ASSERT_STREQ("Hangup", strsignal(1));
96 ASSERT_STREQ("Real-time signal 14", strsignal(48));
98 ASSERT_STREQ("Real-time signal 16", strsignal(48));
102 ASSERT_STREQ("Unknown signal -1", strsignal(-1)); // Too small.
103 ASSERT_STREQ("Unknown signal 0", strsignal(0)); // Still too small.
104 ASSERT_STREQ("Unknown signal 1234", strsignal(1234)); // Too large.
108 bool equal = (strcmp("Unknown signal 2002", strsignal(2002)) == 0);
113 const char* strsignal1001 = strsignal(1001)
    [all...]
  /ndk/sources/host-tools/make-3.81/
signame.c 20 /* If the system provides strsignal, we don't need it. */
231 strsignal (int signal) function
make.h 292 extern char *strsignal PARAMS ((int signum));
job.c 401 target_name, strsignal (exit_sig),
    [all...]
  /bionic/libc/include/
string.h 83 extern char* strsignal(int sig);
  /frameworks/base/services/java/com/android/server/am/
NativeCrashListener.java 79 ci.exceptionMessage = Libcore.os.strsignal(mSignal);
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 134 public String strsignal(int signal) { return os.strsignal(signal); } method in class:ForwardingOs
Os.java 127 public String strsignal(int signal); method in interface:Os
Posix.java 178 public native String strsignal(int signal); method in class:Posix
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
system.h 457 /* If the system doesn't provide strsignal, we get it defined in
461 # ifndef strsignal
462 extern const char *strsignal (int);
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
system.h 457 /* If the system doesn't provide strsignal, we get it defined in
461 # ifndef strsignal
462 extern const char *strsignal (int);
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
system.h 457 /* If the system doesn't provide strsignal, we get it defined in
461 # ifndef strsignal
462 extern const char *strsignal (int);
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
system.h 457 /* If the system doesn't provide strsignal, we get it defined in
461 # ifndef strsignal
462 extern const char *strsignal (int);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
string.h 365 extern char *strsignal (int __sig) __THROW;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 365 extern char *strsignal (int __sig) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 365 extern char *strsignal (int __sig) __THROW;
  /system/extras/tests/sdcard/
sysutil.cpp 221 snprintf(buffer, sizeof(buffer), "signaled (%d %s)", WTERMSIG(status), strsignal(WTERMSIG(status)));
  /external/strace/
defs.h 632 const char *strsignal(int);
strace.c 1852 strsignal(sig) function
    [all...]
  /hardware/qcom/audio/legacy/libalsa-intf/
arec.c 490 fprintf(stderr, "Arec:Aborted by signal %s...\n", strsignal(sig));
  /external/mksh/src/
histrap.c 1015 sigtraps[i].mess = strsignal(i);
    [all...]
Build.sh     [all...]
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp     [all...]

Completed in 869 milliseconds

1 23 4