HomeSort by relevance Sort by last modified time
    Searched defs:strerror (Results 1 - 16 of 16) sorted by null

  /bionic/libc/bionic/
strerror.cpp 34 GLOBAL_INIT_THREAD_LOCAL_BUFFER(strerror); variable
36 char* strerror(int error_number) { function
43 LOCAL_INIT_THREAD_LOCAL_BUFFER(char*, strerror, NL_TEXTMAX);
  /external/bison/lib/
strerror.c 0 /* strerror.c --- POSIX compatible system error routine
29 #include "strerror-override.h"
36 strerror (int n) function
37 #undef strerror macro
42 /* Cast away const, due to the historical signature of strerror;
48 msg = strerror (n);
50 /* Our strerror_r implementation might use the system's strerror
51 buffer, so all other clients of strerror have to see the error
53 even if the system strerror is, but portable programs shouldn't
54 be using strerror if they care about thread-safety. *
    [all...]
strerror_r.c 32 #include "strerror-override.h"
50 /* Use the system's strerror(). Exclude glibc and cygwin because the
52 strerror_r clobbers strerror. */
53 # undef strerror macro
82 /* This lock protects the buffer returned by strerror(). We assume that
83 no other uses of strerror() exist in the program. */
240 /* Try to do what strerror (errnum) does, but without clobbering the
241 buffer used by strerror(). */
284 /* For a valid error number, the system's strerror() function returns
288 char *errmsg = strerror (errnum)
    [all...]
string.in.h 942 # undef strerror macro
943 # define strerror macro
950 _GL_CXXALIASWARN (strerror); variable
952 # undef strerror macro
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
sunos4.h 66 #define strerror(e) sys_errlist[((unsigned)(e) < sys_nerr) ? e : 0] macro
  /external/iptables/include/libiptc/
xtcshared.h 17 const char *(*strerror)(int); member in struct:xtc_ops
  /development/ndk/sources/android/libportable/arch-mips/
errno.c 360 extern char* REAL(strerror)(int);
361 char *WRAP(strerror)(int errnum) function
363 return REAL(strerror)(errno_pton(errnum));
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
Util.py 82 def strerror(nr): function
  /external/chromium_org/third_party/skia/src/xml/
SkJS.cpp 38 char *strerror(int errnum) { function
  /external/bison/darwin-lib/
string.h 1254 # undef strerror macro
1255 # define strerror macro
1262 _GL_CXXALIASWARN (strerror); variable
1264 # undef strerror macro
    [all...]
  /external/bison/linux-lib/
string.h 1262 _GL_CXXALIASWARN (strerror); variable
1264 # undef strerror macro
    [all...]
  /external/mksh/src/
shf.c 1092 #undef strerror macro
1093 return (strerror(errnum));
1094 #define strerror dontuse_strerror /* poisoned */ macro
sh.h 388 #undef strerror macro
389 #define strerror /* poisoned */ dontuse_strerror macro
393 #define cstrerror(errnum) ((const char *)strerror(errnum))
    [all...]
  /external/oprofile/libpopt/
popt.c 27 static char * strerror(int errno) function
    [all...]
  /external/openssl/
e_os.h 658 # define strerror(errnum) \ macro
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
callclient.cc 412 const std::string CallClient::strerror(buzz::XmppEngine::Error err) { function in class:CallClient
471 console_->PrintLine("logged out... %s", strerror(error).c_str());
    [all...]

Completed in 1143 milliseconds