Searched refs:bytes_read (Results 1 – 8 of 8) sorted by relevance
/glibc-2.36/sysdeps/unix/sysv/linux/ |
D | tst-affinity-pid.c | 59 ssize_t bytes_read = TEMP_FAILURE_RETRY in read_fully() local 61 if (bytes_read < 0) in read_fully() 63 if (bytes_read == 0) in read_fully() 65 buffer += bytes_read; in read_fully() 77 ssize_t bytes_read = read_fully in process_child_response() local 79 if (bytes_read < 0) in process_child_response() 84 if (bytes_read != sizeof (value_from_child)) in process_child_response() 86 printf ("error: not enough bytes from child: %zd\n", bytes_read); in process_child_response() 91 bytes_read = read_fully (pipes[0], set, size); in process_child_response() 92 if (bytes_read < 0) in process_child_response() [all …]
|
/glibc-2.36/libio/ |
D | iofread_u.c | 36 size_t bytes_read; in __fread_unlocked() local 40 bytes_read = _IO_sgetn (fp, (char *) buf, bytes_requested); in __fread_unlocked() 41 return bytes_requested == bytes_read ? count : bytes_read / size; in __fread_unlocked()
|
D | iofread.c | 33 size_t bytes_read; in _IO_fread() local 38 bytes_read = _IO_sgetn (fp, (char *) buf, bytes_requested); in _IO_fread() 40 return bytes_requested == bytes_read ? count : bytes_read / size; in _IO_fread()
|
/glibc-2.36/debug/ |
D | fread_chk.c | 49 size_t bytes_read; in __fread_chk() local 51 bytes_read = _IO_sgetn (stream, (char *) ptr, bytes_requested); in __fread_chk() 53 return bytes_requested == bytes_read ? n : bytes_read / size; in __fread_chk()
|
D | fread_u_chk.c | 49 size_t bytes_read = _IO_sgetn (stream, (char *) ptr, bytes_requested); in __fread_unlocked_chk() local 50 return bytes_requested == bytes_read ? n : bytes_read / size; in __fread_unlocked_chk()
|
/glibc-2.36/sysdeps/posix/ |
D | preadv_common.c | 63 ssize_t bytes_read = PREAD (fd, buffer, bytes, offset); in PREADV() local 64 if (bytes_read < 0) in PREADV() 68 bytes = bytes_read; in PREADV() 84 return bytes_read; in PREADV()
|
D | readv.c | 71 ssize_t bytes_read = __read (fd, buffer, bytes); in __readv() local 72 if (bytes_read < 0) in __readv() 76 bytes = bytes_read; in __readv() 89 return bytes_read; in __readv()
|
/glibc-2.36/ChangeLog.old/ |
D | ChangeLog.13 | 10255 * sysdeps/posix/readv.c: Use ssize_t for bytes_read.
|