HomeSort by relevance Sort by last modified time
    Searched defs:ZipWriter (Results 1 - 4 of 4) sorted by null

  /external/protobuf/src/google/protobuf/compiler/
zip_writer.cc 135 ZipWriter::ZipWriter(io::ZeroCopyOutputStream* raw_output)
137 ZipWriter::~ZipWriter() {}
139 bool ZipWriter::Write(const string& filename, const string& contents) {
169 bool ZipWriter::WriteDirectory() {
zip_writer.h 71 class ZipWriter {
73 ZipWriter(io::ZeroCopyOutputStream* raw_output);
74 ~ZipWriter();
  /system/core/include/ziparchive/
zip_writer.h 38 * ZipWriter writer(file);
40 * writer.StartEntry("test.txt", ZipWriter::kCompress | ZipWriter::kAlign);
52 class ZipWriter {
85 * Create a ZipWriter that will write into a FILE stream. The file should be opened with
86 * open mode of "wb" or "w+b". ZipWriter does not take ownership of the file stream. The
89 explicit ZipWriter(FILE* f);
92 ZipWriter(ZipWriter&& zipWriter);
    [all...]
  /system/core/libziparchive/
zip_writer.cc 51 // The ZipWriter is in a bad state.
76 const char* ZipWriter::ErrorCodeString(int32_t error_code) {
88 ZipWriter::ZipWriter(FILE* f) : file_(f), seekable_(false), current_offset_(0),
99 ZipWriter::ZipWriter(ZipWriter&& writer) : file_(writer.file_),
110 ZipWriter& ZipWriter::operator=(ZipWriter&& writer)
    [all...]

Completed in 187 milliseconds