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

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fgets.c 1 /* $OpenBSD: fgets.c,v 1.14 2009/11/09 00:18:27 kurt Exp $ */
46 fgets(char *buf, int n, FILE *fp) function
  /external/bison/lib/
unlocked-io.h 65 # undef fgets macro
66 # define fgets(x,y,z) fgets_unlocked (x,y,z) macro
68 # define fgets_unlocked(x,y,z) fgets (x,y,z)
  /external/e2fsprogs/intl/
localealias.c 98 # define FGETS(buf, n, fp) fgets_unlocked (buf, n, fp)
101 # define FGETS(buf, n, fp) fgets (buf, n, fp)
114 # undef fgets macro
115 # define fgets(buf, len, s) fgets_unlocked (buf, len, s) macro
258 if (FGETS (buf, sizeof buf, fp) == NULL)
349 if (FGETS (buf, sizeof buf, fp) == NULL)
  /external/openssl/crypto/des/
read_pwd.c 174 #define fgets(a,b,c) noecho_fgets(a,b,c) macro
253 fgets(buf,SIZE,in);
365 fgets(buf,size,tty);
376 fgets(buff,size,tty);
396 perror("fgets(tty)");
  /bionic/libc/include/
stdio.h 217 char *fgets(char * __restrict, int, FILE * __restrict);
263 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
357 extern char* __fgets_real(char*, int, FILE*) __RENAME(fgets); variable
358 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
359 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
410 char *fgets(char* dest, int size, FILE* stream) { function
  /development/ndk/platforms/android-L/include/
stdio.h 206 char *fgets(char * __restrict, int, FILE * __restrict);
258 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
412 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
413 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
414 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
419 char *fgets(char* dest, int size, FILE* stream) { function
  /external/bison/darwin-lib/
stdio.h 551 # undef fgets
552 # define fgets rpl_fgets
554 _GL_FUNCDECL_RPL (fgets, char *, (char *s, int n, FILE *stream)
556 _GL_CXXALIAS_RPL (fgets, char *, (char *s, int n, FILE *stream));
558 _GL_CXXALIAS_SYS (fgets, char *, (char *s, int n, FILE *stream));
560 _GL_CXXALIASWARN (fgets); variable
    [all...]
  /external/bison/linux-lib/
stdio.h 551 # undef fgets
552 # define fgets rpl_fgets
554 _GL_FUNCDECL_RPL (fgets, char *, (char *s, int n, FILE *stream)
556 _GL_CXXALIAS_RPL (fgets, char *, (char *s, int n, FILE *stream));
558 _GL_CXXALIAS_SYS (fgets, char *, (char *s, int n, FILE *stream));
560 _GL_CXXALIASWARN (fgets); variable
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 251 /// char *fgets(char *s, int n, FILE *stream);
252 fgets, enumerator in enum:llvm::LibFunc::Func

Completed in 928 milliseconds