Lines Matching refs:bytes_read
186 int ret, bytes_read = 0; in read_adi() local
191 ret = read(fd, buf + bytes_read, buf_sz - bytes_read); in read_adi()
198 bytes_read += ret; in read_adi()
200 } while (bytes_read < buf_sz); in read_adi()
203 DEBUG_PRINT_L3("\tRead %d bytes\n", bytes_read); in read_adi()
205 return bytes_read; in read_adi()
211 int ret, i, bytes_read = 0; in pread_adi() local
218 ret = pread(fd, buf + bytes_read, buf_sz - bytes_read, in pread_adi()
226 bytes_read += ret; in pread_adi()
229 } while (bytes_read < buf_sz); in pread_adi()
233 bytes_read, offset); in pread_adi()
234 for (i = 0; i < bytes_read; i++) in pread_adi()
237 return bytes_read; in pread_adi()