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

1 2 3

  /external/syslinux/com32/lib/
fgets.c 2 * fgets.c
11 char *fgets(char *s, int n, FILE * f) function
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fgets.c 2 Implementation of fgets as declared in <stdio.h>.
43 NetBSD: fgets.c,v 1.20 2003/12/14 23:56:28 lukem Exp
44 fgets.c 8.2 (Berkeley) 12/22/93
61 fgets(char *buf, int n, FILE *fp) function
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fgets.c 1 /* $OpenBSD: fgets.c,v 1.16 2016/09/21 04:38:56 guenther Exp $ */
46 fgets(char *buf, int n, FILE *fp) __overloadable
106 DEF_STRONG(fgets); variable
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
stdio.h 50 #undef fgets macro
89 FILE *__restrict__ __stream), fgets);
92 fgets (char *__restrict__ __s, int __n, FILE *__restrict__ __stream) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
stdio.h 50 #undef fgets macro
89 FILE *__restrict__ __stream), fgets);
92 fgets (char *__restrict__ __s, int __n, FILE *__restrict__ __stream) function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ssp/
stdio.h 50 #undef fgets macro
89 FILE *__restrict__ __stream), fgets);
92 fgets (char *__restrict__ __s, int __n, FILE *__restrict__ __stream) function
  /bionic/libc/include/
stdio.h 124 char *fgets(char * __restrict, int, FILE * __restrict) __overloadable
125 __RENAME_CLANG(fgets);
159 char* gets(char*) __attribute__((deprecated("gets is unsafe, use fgets instead")));
384 char *fgets(char* __restrict dest, int size, FILE* stream) __overloadable
389 char *fgets(char* dest, int size, FILE* stream) __overloadable
395 char *fgets(char* __restrict const __pass_object_size dest,
400 return __call_bypassing_fortify(fgets)(dest, size, stream);
413 char* __fgets_real(char*, int, FILE*) __RENAME(fgets); variable
414 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
415 __errordecl(__fgets_too_small_error, "fgets called with size less than zero")
489 char *fgets(char* dest, int size, FILE* stream) { function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
stdio2.h 222 __wur __warnattr ("please use fgets or getline instead, gets can't "
237 FILE *__restrict __stream), fgets) __wur;
241 __wur __warnattr ("fgets called with bigger size than length "
245 fgets (char *__restrict __s, int __n, FILE *__restrict __stream) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
stdio2.h 222 __wur __warnattr ("please use fgets or getline instead, gets can't "
237 FILE *__restrict __stream), fgets) __wur;
241 __wur __warnattr ("fgets called with bigger size than length "
245 fgets (char *__restrict __s, int __n, FILE *__restrict __stream) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
stdio2.h 222 __wur __warnattr ("please use fgets or getline instead, gets can't "
237 FILE *__restrict __stream), fgets) __wur;
241 __wur __warnattr ("fgets called with bigger size than length "
245 fgets (char *__restrict __s, int __n, FILE *__restrict __stream) 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)
  /toolchain/binutils/binutils-2.25/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
261 if (FGETS (buf, sizeof buf, fp) == NULL)
352 if (FGETS (buf, sizeof buf, fp) == NULL)
  /development/ndk/platforms/android-21/include/
stdio.h 226 char *fgets(char * __restrict, int, FILE * __restrict);
272 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
424 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
425 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
430 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...]
  /prebuilts/ndk/r10/platforms/android-21/arch-arm/usr/include/
stdio.h 226 char *fgets(char * __restrict, int, FILE * __restrict);
272 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
424 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
425 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
430 char *fgets(char* dest, int size, FILE* stream) { function
  /prebuilts/ndk/r10/platforms/android-21/arch-arm64/usr/include/
stdio.h 226 char *fgets(char * __restrict, int, FILE * __restrict);
272 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
424 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
425 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
430 char *fgets(char* dest, int size, FILE* stream) { function
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/
stdio.h 226 char *fgets(char * __restrict, int, FILE * __restrict);
272 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
424 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
425 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
430 char *fgets(char* dest, int size, FILE* stream) { function
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/
stdio.h 226 char *fgets(char * __restrict, int, FILE * __restrict);
272 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
424 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
425 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
430 char *fgets(char* dest, int size, FILE* stream) { function
  /prebuilts/ndk/r10/platforms/android-21/arch-x86/usr/include/
stdio.h 226 char *fgets(char * __restrict, int, FILE * __restrict);
272 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
424 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
425 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
430 char *fgets(char* dest, int size, FILE* stream) { function
  /prebuilts/ndk/r10/platforms/android-21/arch-x86_64/usr/include/
stdio.h 226 char *fgets(char * __restrict, int, FILE * __restrict);
272 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
424 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
425 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
430 char *fgets(char* dest, int size, FILE* stream) { function
  /prebuilts/ndk/r10/platforms/android-23/arch-arm/usr/include/
stdio.h 226 char *fgets(char * __restrict, int, FILE * __restrict);
272 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
424 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
425 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
430 char *fgets(char* dest, int size, FILE* stream) { function
  /prebuilts/ndk/r10/platforms/android-23/arch-arm64/usr/include/
stdio.h 226 char *fgets(char * __restrict, int, FILE * __restrict);
272 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
424 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
425 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
430 char *fgets(char* dest, int size, FILE* stream) { function
  /prebuilts/ndk/r10/platforms/android-23/arch-mips/usr/include/
stdio.h 226 char *fgets(char * __restrict, int, FILE * __restrict);
272 char* gets(char*) __warnattr("gets is very unsafe; consider using fgets");
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
424 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
425 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
430 char *fgets(char* dest, int size, FILE* stream) { function

Completed in 1685 milliseconds

1 2 3