Lines Matching refs:bytes_read
295 int bytes_read;
298 bytes_read = read(exec_error_fds[kReadFD], &err, sizeof(err));
299 } while (bytes_read == -1 && errno == EINTR);
300 if (bytes_read != 0) {
324 int bytes_read;
326 bytes_read = read(child_fd,
329 if (bytes_read == -1) {
345 if (bytes_read + fullness > 0) {
346 int length = bytes_read == 0 ?
347 bytes_read + fullness :
348 LengthWithoutIncompleteUtf8(buffer, bytes_read + fullness);
351 fullness = bytes_read + fullness - length;
354 } while (bytes_read != 0);