HomeSort by relevance Sort by last modified time
    Searched full:sys_errlist (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/syslinux/com32/lib/
strerror.c 15 extern const char *const sys_errlist[];
17 if (e < (unsigned int)sys_nerr && sys_errlist[e])
18 return (char *)sys_errlist[e];
makeerrlist.pl 3 # This creates sys_errlist from <asm/errno.h> through somewhat
83 printf "const char * const sys_errlist[%d] = {\n", $maxerr+1;
91 printf "const char * const sys_errlist[%d] = {\n", $maxerr+1;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
sys_errlist.h 1 /* Declare sys_errlist and sys_nerr, or don't. Compatibility (do) version.
21 # error "Never include <bits/sys_errlist.h> directly; use <stdio.h> instead."
24 /* sys_errlist and sys_nerr are deprecated. Use strerror instead. */
28 extern __const char *__const sys_errlist[];
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
sys_errlist.h 1 /* Declare sys_errlist and sys_nerr, or don't. Compatibility (do) version.
21 # error "Never include <bits/sys_errlist.h> directly; use <stdio.h> instead."
24 /* sys_errlist and sys_nerr are deprecated. Use strerror instead. */
28 extern __const char *__const sys_errlist[];
  /external/e2fsprogs/include/nonunix/
unistd.h 30 #define sys_errlist _sys_errlist macro
  /external/e2fsprogs/lib/et/
internal.h 17 extern char const * const sys_errlist[];
error_message.c 130 return(sys_errlist[offset]);
com_err.texinfo 181 (@code{sys_errlist}); this allows @code{errno} values to be used directly
  /toolchain/binutils/binutils-2.27/libiberty/
strerror.c 9 might declare sys_errlist in a way that the compiler might consider
14 #define sys_errlist sys_errlist__ macro
25 #undef sys_errlist macro
444 lies outside the range of sys_errlist[]. */
466 #define sys_errlist sys_errlist__ macro
468 static const char **sys_errlist; variable
476 #ifndef sys_errlist
477 extern char *sys_errlist[];
495 the error_names and the sys_errlist (if needed) tables, which are
548 /* Now attempt to allocate the sys_errlist table, zero it out, and the
    [all...]
configure.ac 390 vars="sys_errlist sys_nerr sys_siglist"
419 AC_DEFINE(HAVE_SYS_ERRLIST, 1, [Define if you have the sys_errlist variable.])
611 # Under mingw32, sys_nerr and sys_errlist exist, but they are
627 # Under uwin 2.0+, sys_nerr and sys_errlist exist, but they are
config.in 323 /* Define if you have the sys_errlist variable. */
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Misc.c 27 extern char *sys_errlist[];
54 estring = sys_errlist[errnum];
ErrorList.c 7 used to index into the sys_errlist array to retrieve its associated
25 sys_errlist[] = { variable
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 47 # define sys_errlist _sys_errlist macro
  /external/libusb/msvc/
errno.h 85 * Definitions of errno. For _doserrno, sys_nerr and * sys_errlist, see
  /external/ltp/testcases/misc/math/float/
tfloat.h 35 /*extern char *sys_errlist[ ];*/
  /external/ImageMagick/MagickCore/
config.h_vms 239 /* Define if you have sys_errlist in libc */
  /external/mksh/src/
Build.sh     [all...]
shf.c 1103 extern const char * const sys_errlist[];
1114 if (errnum > 0 && errnum < sys_nerr && sys_errlist[errnum])
1115 return (sys_errlist[errnum]);
  /external/syslinux/bios/com32/elflink/ldlinux/
ldlinux.elf 
  /external/syslinux/efi32/com32/elflink/ldlinux/
ldlinux.elf 
  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/
namespace.h 73 #define sys_errlist _sys_errlist
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdio.h 846 /* Provide the declarations for `sys_errlist' and `sys_nerr' if they
850 #include <bits/sys_errlist.h>
  /external/libxml2/
triostr.c 572 extern char *sys_errlist[];
577 : sys_errlist[error_number];
    [all...]
  /external/strace/
configure.ac 576 AC_CHECK_DECLS([sys_errlist])

Completed in 601 milliseconds

1 2 3