Lines Matching refs:bytes_read
272 ssize_t bytes_read;
275 bytes_read = read(exec_error_fds[kReadFD], &err, sizeof(err));
276 } while (bytes_read == -1 && errno == EINTR);
277 if (bytes_read != 0) {
299 int bytes_read;
301 bytes_read = static_cast<int>(
303 if (bytes_read == -1) {
316 if (bytes_read + fullness > 0) {
317 int length = bytes_read == 0 ? bytes_read + fullness
319 buffer, bytes_read + fullness);
324 fullness = bytes_read + fullness - length;
327 } while (bytes_read != 0);