• Home
  • Raw
  • Download

Lines Matching refs:options

83 …ipFile zip_file, FilePath &path, bool isDirectory, struct tm *lastModified, const OPTIONS &options)  in OpenNewFileEntry()  argument
92 return ZipOpenNewFileInZip(zip_file, strPath, options, lastModified); in OpenNewFileEntry()
101 …ntryToZip(zipFile zip_file, FilePath &relativePath, FilePath &absolutePath, const OPTIONS &options) in AddFileEntryToZip() argument
109 if (!OpenNewFileEntry(zip_file, relativePath, false, lastModified, options)) { in AddFileEntryToZip()
120 …ectoryEntryToZip(zipFile zip_file, FilePath &path, struct tm *lastModified, const OPTIONS &options) in AddDirectoryEntryToZip() argument
123 …return OpenNewFileEntry(zip_file, path, true, lastModified, options) && CloseNewFileEntry(zip_file… in AddDirectoryEntryToZip()
169 bool ZipWriter::WriteEntries(const std::vector<FilePath> &paths, const OPTIONS &options, CALLBACK c… in WriteEntries() argument
172 return AddEntries(paths, options, callback) && Close(options, callback); in WriteEntries()
175 bool ZipWriter::AddEntries(const std::vector<FilePath> &paths, const OPTIONS &options, CALLBACK cal… in AddEntries() argument
181 return FlushEntriesIfNeeded(false, options, callback); in AddEntries()
184 bool ZipWriter::Close(const OPTIONS &options, CALLBACK callback) in Close() argument
186 …bool success = FlushEntriesIfNeeded(true, options, callback) && zipClose(zipFile_, nullptr) == ZIP… in Close()
191 bool ZipWriter::FlushEntriesIfNeeded(bool force, const OPTIONS &options, CALLBACK callback) in FlushEntriesIfNeeded() argument
222 if (!AddFileEntryToZip(zipFile_, relativePath, absolutePath, options)) { in FlushEntriesIfNeeded()
230 if (!AddDirectoryEntryToZip(zipFile_, relativePath, last_modified, options)) { in FlushEntriesIfNeeded()