Home | History | Annotate | Download | only in src

Lines Matching refs:bytes_read

297   int bytes_read;
300 bytes_read = read(exec_error_fds[kReadFD], &err, sizeof(err));
301 } while (bytes_read == -1 && errno == EINTR);
302 if (bytes_read != 0) {
328 int bytes_read;
330 bytes_read = read(child_fd,
333 if (bytes_read == -1) {
350 if (bytes_read + fullness > 0) {
351 int length = bytes_read == 0 ?
352 bytes_read + fullness :
353 LengthWithoutIncompleteUtf8(buffer, bytes_read + fullness);
357 fullness = bytes_read + fullness - length;
360 } while (bytes_read != 0);