Home | History | Annotate | Download | only in runtime

Lines Matching full:actual

66   // figure out where the actual data starts.
85 ssize_t actual = TEMP_FAILURE_RETRY(read(zip_archive_->fd_, lfh_buf, sizeof(lfh_buf)));
86 if (actual != sizeof(lfh_buf)) {
135 ssize_t actual = TEMP_FAILURE_RETRY(read(in, &buf[0], bytes_to_read));
136 if (actual != static_cast<ssize_t>(bytes_to_read)) {
204 ssize_t actual = TEMP_FAILURE_RETRY(read(in, read_buf.get(), bytes_to_read));
205 if (actual != static_cast<ssize_t>(bytes_to_read)) {
206 LOG(WARNING) << "Zip: inflate read failed (" << actual << " vs " << bytes_to_read << ")";
411 ssize_t actual = TEMP_FAILURE_RETRY(read(fd_, scan_buf.get(), sizeof(int32_t)));
412 if (actual != static_cast<ssize_t>(sizeof(int32_t))) {
439 actual = TEMP_FAILURE_RETRY(read(fd_, scan_buf.get(), read_amount));
440 if (actual != static_cast<ssize_t>(read_amount)) {
441 PLOG(WARNING) << "Zip: read " << actual << ", expected " << read_amount << ". failed";