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

1 2 3

  /system/core/adb/sysdeps/
errno.h 24 #define strerror adb_strerror macro
  /bionic/libc/bionic/
strerror.cpp 35 char* strerror(int error_number) { function
  /external/syslinux/com32/lib/
strerror.c 2 * strerror.c
7 char *strerror(int errnum) function
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Misc.c 67 /** The strerror function maps the number in errnum to a message string.
68 Typically, the values for errnum come from errno, but strerror shall map
72 strerror function.
74 @return The strerror function returns a pointer to the string, the
77 a subsequent call to the strerror function.
80 strerror(int errnum) function
  /external/libxml2/win32/wince/
wincecompat.c 13 char *strError[]= {"Error 0","","No such file or directory","","","","","Arg list too long",
62 char *strerror(int errnum) function
65 return strError[MAX_STRERROR];
67 return strError[errnum];
  /external/syslinux/gpxe/src/hci/
strerror.c 17 * strerror() will simply return the text "Error 0x<errno>".
68 * @ret strerror Pointer to error text
73 * The pointer returned by strerror() is valid only until the next
74 * call to strerror().
77 const char * strerror ( int errno ) { function
81 /* Allow for strerror(rc) as well as strerror(errno) */
  /system/core/adb/sysdeps/win32/
errno.cpp 23 // Overrides strerror() to handle error codes not supported by the Windows C
26 // sysdeps.h defines strerror to adb_strerror, but in this function, we
27 // want to call the real C Runtime strerror().
28 #pragma push_macro("strerror")
29 #undef strerror macro
33 char* errmsg = strerror(-1);
37 errmsg = strerror(err);
65 // buffer used by strerror()/_strerror(). _strerror() appends the
81 // strerror() can muster (probably "Unknown error" or some
83 errmsg = strerror(err)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.h 76 PyObject *strerror; member in struct:__anon4378
_iomodule.c 102 PyObject *myerrno = NULL, *strerror = NULL;
110 &myerrno, &strerror, &written))
113 baseargs = PyTuple_Pack(2, myerrno, strerror);
116 /* This will take care of initializing of myerrno and strerror members */
100 PyObject *myerrno = NULL, *strerror = NULL; local
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.h 71 PyObject *strerror; member in struct:__anon4691
  /external/iproute2/include/libiptc/
xtcshared.h 17 const char *(*strerror)(int); member in struct:xtc_ops
  /external/iptables/include/libiptc/
xtcshared.h 17 const char *(*strerror)(int); member in struct:xtc_ops
  /external/python/cpython2/Modules/_io/
_iomodule.h 81 PyObject *strerror; member in struct:__anon32712
  /frameworks/rs/driver/
rsdGL.cpp 49 static const char *strerror(EGLint err) { function in struct:EGLUtils
77 fprintf(stderr, "after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error),
  /external/valgrind/coregrind/
m_syscall.c 1112 const HChar* VG_(strerror) ( UWord errnum ) function
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/
strerror.c 608 @deftypefn Supplemental char* strerror (int @var{errnoval})
624 next call to @code{strerror}.
631 strerror (int errnoval) function
790 char *strerror ();
806 msg = strerror (errn);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyerrors.h 57 PyObject *strerror; member in struct:__anon4357
68 PyObject *strerror; member in struct:__anon4358
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyerrors.h 57 PyObject *strerror; member in struct:__anon4663
68 PyObject *strerror; member in struct:__anon4664
  /external/python/cpython2/Include/
pyerrors.h 57 PyObject *strerror; member in struct:__anon32605
68 PyObject *strerror; member in struct:__anon32606
  /frameworks/native/opengl/tests/lib/include/
EGLUtils.h 42 static inline const char *strerror(EGLint err);
70 const char *EGLUtils::strerror(EGLint err) function in class:android::EGLUtils
176 msg.appendFormat("after %s() eglError %s (0x%x)\n", op, EGLUtils::strerror(error), error);
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyerrors.h 57 PyObject *strerror; member in struct:__anon66496
68 PyObject *strerror; member in struct:__anon66497
  /prebuilts/gdb/linux-x86/include/python2.7/
pyerrors.h 57 PyObject *strerror; member in struct:__anon66618
68 PyObject *strerror; member in struct:__anon66619
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyerrors.h 57 PyObject *strerror; member in struct:__anon1011
68 PyObject *strerror; member in struct:__anon1012
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyerrors.h 57 PyObject *strerror; member in struct:__anon1134
68 PyObject *strerror; member in struct:__anon1135
  /external/python/cpython3/Include/
pyerrors.h 54 PyObject *strerror; member in struct:__anon33173

Completed in 1302 milliseconds

1 2 3