Home | History | Annotate | Download | only in src

Lines Matching refs:bytes_read

294   int bytes_read;
297 bytes_read = read(exec_error_fds[kReadFD], &err, sizeof(err));
298 } while (bytes_read == -1 && errno == EINTR);
299 if (bytes_read != 0) {
327 int bytes_read;
329 bytes_read = read(child_fd,
332 if (bytes_read == -1) {
348 if (bytes_read + fullness > 0) {
349 int length = bytes_read == 0 ?
350 bytes_read + fullness :
351 LengthWithoutIncompleteUtf8(buffer, bytes_read + fullness);
359 fullness = bytes_read + fullness - length;
362 } while (bytes_read != 0);