Lines Matching full:zipwriter
51 // The ZipWriter is in a bad state.
73 const char* ZipWriter::ErrorCodeString(int32_t error_code) {
85 ZipWriter::ZipWriter(FILE* f)
100 ZipWriter::ZipWriter(ZipWriter&& writer)
112 ZipWriter& ZipWriter::operator=(ZipWriter&& writer) {
125 int32_t ZipWriter::HandleError(int32_t error_code) {
131 int32_t ZipWriter::StartEntry(const char* path, size_t flags) {
140 int32_t ZipWriter::StartAlignedEntry(const char* path, size_t flags, uint32_t alignment) {
144 int32_t ZipWriter::StartEntryWithTime(const char* path, size_t flags, time_t time) {
174 static void CopyFromFileEntry(const ZipWriter::FileEntry& src, bool use_data_descriptor,
198 int32_t ZipWriter::StartAlignedEntryWithTime(const char* path, size_t flags, time_t time,
221 if (flags & ZipWriter::kCompress) {
268 int32_t ZipWriter::DiscardLastEntry() {
282 int32_t ZipWriter::GetLastEntry(FileEntry* out_entry) {
292 int32_t ZipWriter::PrepareDeflate() {
319 int32_t ZipWriter::WriteBytes(const void* data, size_t len) {
341 int32_t ZipWriter::StoreBytes(FileEntry* file, const void* data, size_t len) {
352 int32_t ZipWriter::CompressBytes(FileEntry* file, const void* data, size_t len) {
386 int32_t ZipWriter::FlushCompressedBytes(FileEntry* file) {
423 int32_t ZipWriter::FinishEntry() {
474 int32_t ZipWriter::Finish() {