Home | History | Annotate | Download | only in libziparchive

Lines Matching refs:size_

754   MemoryWriter(uint8_t* buf, size_t size) : Writer(), buf_(buf), size_(size), bytes_written_(0) {}
757 if (bytes_written_ + buf_size > size_) {
758 ALOGW("Zip: Unexpected size " ZD " (declared) vs " ZD " (actual)", size_,
770 const size_t size_;