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

/bionic/libc/include/bits/fortify/
H A Dstdio.h96 size_t fread(void* const __pass_object_size0 buf, size_t size, size_t count, FILE* stream)
99 "in call to 'fread', size * count overflows")
101 "in call to 'fread', size * count is too large for the given buffer") {
105 return __call_bypassing_fortify(fread)(buf, size, count, stream);
146 size_t __fread_real(void*, size_t, size_t, FILE*) __RENAME(fread); variable
147 __errordecl(__fread_too_big_error, "fread called with size * count bigger than buffer");
148 __errordecl(__fread_overflow, "fread called with overflowing size * count");
173 size_t fread(void* buf, size_t size, size_t count, FILE* stream) { function
/bionic/tools/versioner/current/bits/fortify/
H A Dstdio.h96 size_t fread(void* const __pass_object_size0 buf, size_t size, size_t count, FILE* stream)
99 "in call to 'fread', size * count overflows")
101 "in call to 'fread', size * count is too large for the given buffer") {
105 return __call_bypassing_fortify(fread)(buf, size, count, stream);
146 size_t __fread_real(void*, size_t, size_t, FILE*) __RENAME(fread); variable
147 __errordecl(__fread_too_big_error, "fread called with size * count bigger than buffer");
148 __errordecl(__fread_overflow, "fread called with overflowing size * count");
173 size_t fread(void* buf, size_t size, size_t count, FILE* stream) { function
/bionic/libc/stdio/
H A Dstdio.cpp1034 size_t fread(void* buf, size_t size, size_t count, FILE* fp) { function

Completed in 1099 milliseconds