Searched defs:fgets (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/include/bits/fortify/
H A Dstdio.h129 char* fgets(char* const __pass_object_size dest, int size, FILE* stream)
131 __clang_error_if(size < 0, "in call to 'fgets', size should not be negative")
133 "in call to 'fgets', size is larger than the destination buffer") {
137 return __call_bypassing_fortify(fgets)(dest, size, stream);
150 char* __fgets_real(char*, int, FILE*) __RENAME(fgets); variable
151 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
152 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
223 char *fgets(char* dest, int size, FILE* stream) { function
/bionic/tools/versioner/current/bits/fortify/
H A Dstdio.h129 char* fgets(char* const __pass_object_size dest, int size, FILE* stream)
131 __clang_error_if(size < 0, "in call to 'fgets', size should not be negative")
133 "in call to 'fgets', size is larger than the destination buffer") {
137 return __call_bypassing_fortify(fgets)(dest, size, stream);
150 char* __fgets_real(char*, int, FILE*) __RENAME(fgets); variable
151 __errordecl(__fgets_too_big_error, "fgets called with size bigger than buffer");
152 __errordecl(__fgets_too_small_error, "fgets called with size less than zero");
223 char *fgets(char* dest, int size, FILE* stream) { function
/bionic/libc/stdio/
H A Dstdio.cpp716 char* fgets(char* buf, int n, FILE* fp) { function

Completed in 96 milliseconds