HomeSort by relevance Sort by last modified time
    Searched full:errnum (Results 101 - 125 of 254) sorted by null

1 2 3 45 6 7 8 91011

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /external/qemu/distrib/zlib-1.2.3/
gzio.c 975 # define zstrerror(errnum) strerror(errnum)
977 # define zstrerror(errnum) ""
982 given compressed file. errnum is set to zlib error number. If an
984 errnum is set to Z_ERRNO and the application may consult errno
987 const char * ZEXPORT gzerror (file, errnum)
989 int *errnum;
995 *errnum = Z_STREAM_ERROR;
998 *errnum = s->z_err;
999 if (*errnum == Z_OK) return (const char*)""
    [all...]
  /external/grub/lib/
device.c 852 errnum = ERR_DEV_VALUES;
870 errnum = ERR_NO_PART;
887 errnum = ERR_DEV_VALUES;
897 errnum = ERR_DEV_VALUES;
906 errnum = ERR_WRITE;
  /external/libpcap/
pcap.c 685 pcap_strerror(int errnum)
688 return (strerror(errnum));
694 if ((unsigned int)errnum < sys_nerr)
695 return ((char *)sys_errlist[errnum]);
696 (void)snprintf(ebuf, sizeof ebuf, "Unknown error: %d", errnum);
  /external/bzip2/
bzlib.h 270 int *errnum
  /external/chromium_org/third_party/openssl/openssl/
e_os.h 642 # define strerror(errnum) \
643 (((errnum)<0 || (errnum)>=sys_nerr) ? NULL : sys_errlist[errnum])
  /external/grub/stage2/
stage2.c 908 errnum = ERR_NONE;
924 errnum = ERR_NONE;
941 errnum = 0;
981 errnum = 0;
common.c 47 grub_error_t errnum = ERR_NONE; variable
  /external/openssl/
e_os.h 642 # define strerror(errnum) \
643 (((errnum)<0 || (errnum)>=sys_nerr) ? NULL : sys_errlist[errnum])
  /external/valgrind/main/coregrind/
pub_core_syscall.h 93 extern const HChar* VG_(strerror) ( UWord errnum );
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
string.h 255 /* Return a string describing the meaning of the `errno' code in ERRNUM. */
268 ERRNUM. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 255 /* Return a string describing the meaning of the `errno' code in ERRNUM. */
268 ERRNUM. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 255 /* Return a string describing the meaning of the `errno' code in ERRNUM. */
268 ERRNUM. */
  /bionic/libc/include/
string.h 67 extern int strerror_r(int errnum, char *buf, size_t n);
  /external/bison/lib/
string.in.h     [all...]
  /ndk/sources/host-tools/make-3.81/
misc.c 299 strerror (int errnum)
308 return sys_errlist[errnum];
310 sprintf (buf, _("Unknown error %d"), errnum);
  /external/tcpdump/
print-nfs.c 1086 int errnum; local
1090 errnum = EXTRACT_32BITS(&dp[0]);
1092 *er = errnum;
1093 if (errnum != 0) {
1096 tok2str(status2str, "unk %d", errnum));
    [all...]
  /external/grub/
ChangeLog     [all...]
  /external/bison/darwin-lib/
string.h     [all...]
  /external/bison/linux-lib/
string.h     [all...]
  /external/grub/grub/
asmstub.c 135 /* If ERRNUM is non-zero, then set STATUS to non-zero. */
136 if (errnum)
  /external/qemu/distrib/sdl-1.2.15/src/audio/alsa/
SDL_alsa_audio.c 65 static const char *(*SDL_NAME(snd_strerror))(int errnum);
  /external/zlib/src/as400/
zlib.inc 268 D errnum 10I 0 Error code
  /external/zlib/src/contrib/ada/
zlib-thin.ads 234 function gzerror (file : gzFile; errnum : Int_Access) return Chars_Ptr;

Completed in 1812 milliseconds

1 2 3 45 6 7 8 91011