Home | History | Annotate | Download | only in dumpstate

Lines Matching refs:bytes_read

723         ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer.data(), buffer.size()));
724 if (bytes_read == 0) {
726 } else if (bytes_read == -1) {
730 err = zip_writer_->WriteBytes(buffer.data(), bytes_read);
1325 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd.get(), buffer.data(), buffer.size()));
1326 if (bytes_read == 0) {
1328 } else if (bytes_read == -1) {
1333 SHA256_Update(&ctx, buffer.data(), bytes_read);