Home | History | Annotate | Download | only in dumpstate

Lines Matching refs:bytes_read

787         ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer.data(), buffer.size()));
788 if (bytes_read == 0) {
790 } else if (bytes_read == -1) {
794 err = zip_writer_->WriteBytes(buffer.data(), bytes_read);
1770 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd.get(), buffer.data(), buffer.size()));
1771 if (bytes_read == 0) {
1773 } else if (bytes_read == -1) {
1778 SHA256_Update(&ctx, buffer.data(), bytes_read);