Lines Matching refs:bytes_read
293 ssize_t bytes_read;
296 bytes_read = read(exec_error_fds[kReadFD], &err, sizeof(err));
297 } while (bytes_read == -1 && errno == EINTR);
298 if (bytes_read != 0) {
325 int bytes_read;
327 bytes_read = static_cast<int>(
329 if (bytes_read == -1) {
347 if (bytes_read + fullness > 0) {
348 int length = bytes_read == 0 ?
349 bytes_read + fullness :
350 LengthWithoutIncompleteUtf8(buffer, bytes_read + fullness);
355 fullness = bytes_read + fullness - length;
358 } while (bytes_read != 0);