Searched refs:ZipWriter (Results 1 – 9 of 9) sorted by relevance
/external/zlib/google/ |
D | zip_writer.cc | 87 std::unique_ptr<ZipWriter> ZipWriter::CreateWithFd( in CreateWithFd() 98 return std::unique_ptr<ZipWriter>( in CreateWithFd() 99 new ZipWriter(zip_file, root_dir, file_accessor)); in CreateWithFd() 104 std::unique_ptr<ZipWriter> ZipWriter::Create( in Create() 115 return std::unique_ptr<ZipWriter>( in Create() 116 new ZipWriter(zip_file, root_dir, file_accessor)); in Create() 119 ZipWriter::ZipWriter(zipFile zip_file, in ZipWriter() function in zip::internal::ZipWriter 124 ZipWriter::~ZipWriter() { in ~ZipWriter() 128 bool ZipWriter::WriteEntries(const std::vector<base::FilePath>& paths) { in WriteEntries() 132 bool ZipWriter::AddEntries(const std::vector<base::FilePath>& paths) { in AddEntries() [all …]
|
D | zip_writer.h | 31 class ZipWriter { 37 static std::unique_ptr<ZipWriter> CreateWithFd(int zip_file_fd, 41 static std::unique_ptr<ZipWriter> Create(const base::FilePath& zip_file, 44 ~ZipWriter(); 53 ZipWriter(zipFile zip_file, 85 DISALLOW_COPY_AND_ASSIGN(ZipWriter);
|
D | zip.cc | 156 std::unique_ptr<internal::ZipWriter> zip_writer; in Zip() 160 zip_writer = internal::ZipWriter::CreateWithFd( in Zip() 167 zip_writer = internal::ZipWriter::Create( in Zip()
|
/external/v8/third_party/zlib/google/ |
D | zip_writer.cc | 88 std::unique_ptr<ZipWriter> ZipWriter::CreateWithFd( in CreateWithFd() 99 return std::unique_ptr<ZipWriter>( in CreateWithFd() 100 new ZipWriter(zip_file, root_dir, file_accessor)); in CreateWithFd() 105 std::unique_ptr<ZipWriter> ZipWriter::Create( in Create() 116 return std::unique_ptr<ZipWriter>( in Create() 117 new ZipWriter(zip_file, root_dir, file_accessor)); in Create() 120 ZipWriter::ZipWriter(zipFile zip_file, in ZipWriter() function in zip::internal::ZipWriter 125 ZipWriter::~ZipWriter() { in ~ZipWriter() 129 bool ZipWriter::WriteEntries(const std::vector<base::FilePath>& paths) { in WriteEntries() 133 bool ZipWriter::AddEntries(const std::vector<base::FilePath>& paths) { in AddEntries() [all …]
|
D | zip_writer.h | 31 class ZipWriter { 37 static std::unique_ptr<ZipWriter> CreateWithFd(int zip_file_fd, 41 static std::unique_ptr<ZipWriter> Create(const base::FilePath& zip_file, 44 ~ZipWriter(); 53 ZipWriter(zipFile zip_file, 85 DISALLOW_COPY_AND_ASSIGN(ZipWriter);
|
D | zip.cc | 156 std::unique_ptr<internal::ZipWriter> zip_writer; in Zip() 160 zip_writer = internal::ZipWriter::CreateWithFd( in Zip() 167 zip_writer = internal::ZipWriter::Create( in Zip()
|
/external/protobuf/src/google/protobuf/compiler/ |
D | zip_writer.cc | 138 ZipWriter::ZipWriter(io::ZeroCopyOutputStream* raw_output) in ZipWriter() function in google::protobuf::compiler::ZipWriter 140 ZipWriter::~ZipWriter() {} in ~ZipWriter() 142 bool ZipWriter::Write(const std::string& filename, in Write() 173 bool ZipWriter::WriteDirectory() { in WriteDirectory()
|
D | zip_writer.h | 71 class ZipWriter { 73 ZipWriter(io::ZeroCopyOutputStream* raw_output); 74 ~ZipWriter();
|
D | command_line_interface.cc | 550 ZipWriter zip_writer(&stream); in WriteAllToZip()
|