Lines Matching refs:ZipWriter
30 bool ZipWriter::ShouldContinue() { in ShouldContinue()
46 bool ZipWriter::AddFileContent(const base::FilePath& path, base::File file) { in AddFileContent()
73 bool ZipWriter::OpenNewFileEntry(const base::FilePath& path, in OpenNewFileEntry()
86 bool ZipWriter::CloseNewFileEntry() { in CloseNewFileEntry()
90 bool ZipWriter::AddFileEntry(const base::FilePath& path, base::File file) { in AddFileEntry()
105 bool ZipWriter::AddDirectoryEntry(const base::FilePath& path) { in AddDirectoryEntry()
133 std::unique_ptr<ZipWriter> ZipWriter::CreateWithFd( in CreateWithFd()
145 return std::unique_ptr<ZipWriter>(new ZipWriter(zip_file, file_accessor)); in CreateWithFd()
150 std::unique_ptr<ZipWriter> ZipWriter::Create( in Create()
162 return std::unique_ptr<ZipWriter>(new ZipWriter(zip_file, file_accessor)); in Create()
165 ZipWriter::ZipWriter(zipFile zip_file, FileAccessor* file_accessor) in ZipWriter() function in zip::internal::ZipWriter
168 ZipWriter::~ZipWriter() { in ~ZipWriter()
173 bool ZipWriter::Close() { in Close()
186 bool ZipWriter::AddMixedEntries(Paths paths) { in AddMixedEntries()
234 bool ZipWriter::AddFileEntries(Paths paths) { in AddFileEntries()
268 bool ZipWriter::AddDirectoryEntries(Paths paths) { in AddDirectoryEntries()
277 bool ZipWriter::AddDirectoryContents(const base::FilePath& path) { in AddDirectoryContents()
292 void ZipWriter::Filter(std::vector<base::FilePath>* const paths) { in Filter()