Lines Matching refs:buf

104 size_t __fread_chk(void* buf, size_t size, size_t count, FILE* stream, size_t buf_size) {
108 return fread(buf, size, count, stream);
111 return fread(buf, size, count, stream);
114 size_t __fwrite_chk(const void* buf, size_t size, size_t count, FILE* stream, size_t buf_size) {
118 return fwrite(buf, size, count, stream);
121 return fwrite(buf, size, count, stream);
124 extern char* __getcwd_chk(char* buf, size_t len, size_t actual_size) {
126 return getcwd(buf, len);
172 ssize_t __pread64_chk(int fd, void* buf, size_t count, off64_t offset, size_t buf_size) {
175 return pread64(fd, buf, count, offset);
178 ssize_t __pread_chk(int fd, void* buf, size_t count, off_t offset, size_t buf_size) {
181 return pread(fd, buf, count, offset);
184 ssize_t __pwrite64_chk(int fd, const void* buf, size_t count, off64_t offset,
188 return pwrite64(fd, buf, count, offset);
191 ssize_t __pwrite_chk(int fd, const void* buf, size_t count, off_t offset,
195 return pwrite(fd, buf, count, offset);
198 ssize_t __read_chk(int fd, void* buf, size_t count, size_t buf_size) {
201 return read(fd, buf, count);
204 ssize_t __readlinkat_chk(int dirfd, const char* path, char* buf, size_t size, size_t buf_size) {
207 return readlinkat(dirfd, path, buf, size);
210 ssize_t __readlink_chk(const char* path, char* buf, size_t size, size_t buf_size) {
213 return readlink(path, buf, size);
216 ssize_t __recvfrom_chk(int socket, void* buf, size_t len, size_t buf_size,
219 return recvfrom(socket, buf, len, flags, src_addr, addrlen);
222 ssize_t __sendto_chk(int socket, const void* buf, size_t len, size_t buflen,
226 return sendto(socket, buf, len, flags, dest_addr, addrlen);
445 ssize_t __write_chk(int fd, const void* buf, size_t count, size_t buf_size) {
448 return write(fd, buf, count);