Home | History | Annotate | Download | only in src

Lines Matching refs:bytes_read

285   ssize_t bytes_read;
288 bytes_read = read(exec_error_fds[kReadFD], &err, sizeof(err));
289 } while (bytes_read == -1 && errno == EINTR);
290 if (bytes_read != 0) {
317 int bytes_read;
319 bytes_read = static_cast<int>(
321 if (bytes_read == -1) {
339 if (bytes_read + fullness > 0) {
340 int length = bytes_read == 0 ?
341 bytes_read + fullness :
342 LengthWithoutIncompleteUtf8(buffer, bytes_read + fullness);
347 fullness = bytes_read + fullness - length;
350 } while (bytes_read != 0);