/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
target.h | 47 int perf_target__strerror(struct perf_target *target, int errnum, char *buf,
|
/external/elfutils/0.153/libdwfl/ |
argp-std.c | 117 inline void failure (Dwfl *dwfl, int errnum, const char *msg) 121 if (errnum == -1) 125 argp_failure (state, EXIT_FAILURE, errnum, "%s", msg); 127 inline error_t fail (Dwfl *dwfl, int errnum, const char *msg) 129 failure (dwfl, errnum, msg); 130 return errnum == -1 ? EIO : errnum;
|
/libnativehelper/ |
JNIHelp.cpp | 252 int jniThrowIOException(C_JNIEnv* env, int errnum) { 254 const char* message = jniStrError(errnum, buffer, sizeof(buffer)); 291 const char* jniStrError(int errnum, char* buf, size_t buflen) { 294 // char *strerror_r(int errnum, char *buf, size_t n); 295 return strerror_r(errnum, buf, buflen); 297 int rc = strerror_r(errnum, buf, buflen); 302 snprintf(buf, buflen, "errno %d", errnum);
|
/external/chromium_org/media/audio/alsa/ |
alsa_wrapper.cc | 100 const char* AlsaWrapper::StrError(int errnum) { 101 return snd_strerror(errnum);
|
alsa_wrapper.h | 74 virtual const char* StrError(int errnum);
|
/external/chromium_org/third_party/webrtc/modules/video_capture/mac/qtkit/ |
video_capture_qtkit_info.mm | 54 int errNum = [[_captureInfo getDeviceNamesFromIndex:deviceNumber 60 return errNum;
|
/external/freetype/src/gzip/ |
zutil.h | 150 # define zstrerror(errnum) strerror(errnum) 152 # define zstrerror(errnum) ""
|
/external/compiler-rt/lib/profile/ |
GCDAProfiling.c | 238 int errnum = errno; local 240 strerror(errnum)); 248 int errnum = errno; local 250 strerror(errnum)); 289 int errnum = errno; local 291 strerror(errnum));
|
/external/bison/lib/ |
strerror-override.c | 32 /* If ERRNUM maps to an errno value defined by gnulib, return a string 35 strerror_override (int errnum) 38 switch (errnum)
|
/development/ndk/sources/android/libportable/arch-mips/ |
errno.c | 361 char *WRAP(strerror)(int errnum) 363 return REAL(strerror)(errno_pton(errnum)); 367 int WRAP(strerror_r)(int errnum, char *buf, size_t buflen) 369 return REAL(strerror_r)(errno_pton(errnum), buf, buflen);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/ |
error.h | 45 const char *snd_strerror(int errnum);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/ |
error.h | 45 const char *snd_strerror(int errnum);
|
/external/mksh/src/ |
shf.c | 1090 cstrerror(int errnum) 1093 return (strerror(errnum)); 1106 cstrerror(int errnum) 1112 if (errnum > 0 && errnum < sys_nerr && sys_errlist[errnum]) 1113 return (sys_errlist[errnum]); 1116 switch (errnum) { 1161 "Unknown error: %d", errnum);
|
/external/qemu/target-i386/ |
hax-windows.c | 22 uint32_t errNum = 0; 39 errNum = GetLastError(); 40 if (errNum == ERROR_FILE_NOT_FOUND)
|
/development/ndk/platforms/android-3/include/ |
string.h | 67 extern int strerror_r(int errnum, char *buf, size_t n);
|
/external/chromium_org/third_party/skia/src/xml/ |
SkJS.cpp | 38 char *strerror(int errnum) {
|
/external/chromium_org/third_party/zlib/ |
gzlib.c | 443 const char * ZEXPORT gzerror(file, errnum) 445 int *errnum; 457 if (errnum != NULL) 458 *errnum = state->err;
|
/external/libcxx/include/ |
cstring | 53 char* strerror(int errnum);
|
/external/libpcap/msdos/ |
pktdrvr.h | 126 extern const char *PktGetErrorStr (int errNum);
|
/external/qemu/android/config/ |
check-alsa.c | 51 DYN_FUNCTION(const char*,snd_strerror,(int errnum)) \
|
/external/qemu/distrib/zlib-1.2.8/ |
gzlib.c | 528 const char * ZEXPORT gzerror(file, errnum) 530 int *errnum; 542 if (errnum != NULL) 543 *errnum = state->err;
|
/external/skia/src/xml/ |
SkJS.cpp | 38 char *strerror(int errnum) {
|
/external/zlib/src/ |
gzlib.c | 528 const char * ZEXPORT gzerror(file, errnum) 530 int *errnum; 542 if (errnum != NULL) 543 *errnum = state->err;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
cstring | 53 char* strerror(int errnum);
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/ |
string.h | 67 extern int strerror_r(int errnum, char *buf, size_t n);
|