Home
last modified time | relevance | path

Searched refs:current_file_entry_ (Results 1 – 2 of 2) sorted by relevance

/system/libziparchive/
Dzip_writer.cc288 current_file_entry_ = std::move(file_entry); in StartAlignedEntryWithTime()
351 if (len + static_cast<uint64_t>(current_file_entry_.uncompressed_size) > in WriteBytes()
358 if (current_file_entry_.compression_method & kCompressDeflated) { in WriteBytes()
359 result = CompressBytes(&current_file_entry_, data, len32); in WriteBytes()
361 result = StoreBytes(&current_file_entry_, data, len32); in WriteBytes()
368 current_file_entry_.crc32 = static_cast<uint32_t>( in WriteBytes()
369 crc32(current_file_entry_.crc32, reinterpret_cast<const Bytef*>(data), len32)); in WriteBytes()
370 current_file_entry_.uncompressed_size += len32; in WriteBytes()
468 if (current_file_entry_.compression_method & kCompressDeflated) { in FinishEntry()
469 int32_t result = FlushCompressedBytes(&current_file_entry_); in FinishEntry()
[all …]
/system/libziparchive/include/ziparchive/
Dzip_writer.h183 FileEntry current_file_entry_; variable