Home | History | Annotate | Download | only in src

Lines Matching refs:bytes_read

464   DWORD bytes_read;
468 &bytes_read,
472 if (bytes_read == 0) {
474 } else if (bytes_read == 1) {
681 DWORD bytes_read;
685 bytes_read = 0;
689 &bytes_read,
691 buffer[bytes_read] = 0;
693 } while (read_succeeded && bytes_read > 0);
743 ssize_t bytes_read;
746 bytes_read = read(read_fd_, &flag, 1);
747 } while (bytes_read == -1 && errno == EINTR);
749 if (bytes_read == 0) {
751 } else if (bytes_read == 1) {