OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
37
*
ZipWriter
writer(file);
39
* writer.StartEntry("test.txt",
ZipWriter
::kCompress |
ZipWriter
::kAlign);
51
class
ZipWriter
{
69
* Create a
ZipWriter
that will write into a FILE stream. The file should be opened with
70
* open mode of "wb" or "w+b".
ZipWriter
does not take ownership of the file stream. The
73
explicit
ZipWriter
(FILE* f);
76
ZipWriter
(
ZipWriter
&&
zipWriter
);
[
all
...]
/system/core/libziparchive/
zip_writer.cc
48
// The
ZipWriter
is in a bad state.
73
const char*
ZipWriter
::ErrorCodeString(int32_t error_code) {
85
ZipWriter
::
ZipWriter
(FILE* f) : file_(f), current_offset_(0), state_(State::kWritingZip),
89
ZipWriter
::
ZipWriter
(
ZipWriter
&& writer) : file_(writer.file_),
99
ZipWriter
&
ZipWriter
::operator=(
ZipWriter
&& writer)
[
all
...]
Completed in 431 milliseconds