OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ZeroCopyOutputStream
(Results
1 - 25
of
33
) sorted by null
1
2
/external/protobuf/src/google/protobuf/io/
zero_copy_stream.cc
43
ZeroCopyOutputStream
::~
ZeroCopyOutputStream
() {}
zero_copy_stream.h
35
// This file contains the ZeroCopyInputStream and
ZeroCopyOutputStream
85
//
ZeroCopyOutputStream
example:
87
// // "infile" but a
ZeroCopyOutputStream
for "outfile".
90
//
ZeroCopyOutputStream
* output = new FileOutputStream(outfd);
120
class
ZeroCopyOutputStream
;
181
class LIBPROTOBUF_EXPORT
ZeroCopyOutputStream
{
183
inline
ZeroCopyOutputStream
() {}
184
virtual ~
ZeroCopyOutputStream
();
231
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(
ZeroCopyOutputStream
);
gzip_stream.h
40
// GzipOutputStream is an
ZeroCopyOutputStream
that compresses data to
41
// an underlying
ZeroCopyOutputStream
.
109
class LIBPROTOBUF_EXPORT GzipOutputStream : public
ZeroCopyOutputStream
{
140
explicit GzipOutputStream(
ZeroCopyOutputStream
* sub_stream);
144
ZeroCopyOutputStream
* sub_stream,
149
ZeroCopyOutputStream
* sub_stream,
176
// implements
ZeroCopyOutputStream
---------------------------------
182
ZeroCopyOutputStream
* sub_stream_;
193
void Init(
ZeroCopyOutputStream
* sub_stream, const Options& options);
printer.h
35
// Utility class for writing text to a
ZeroCopyOutputStream
.
48
class
ZeroCopyOutputStream
; // zero_copy_stream.h
68
Printer(
ZeroCopyOutputStream
* output, char variable_delimiter);
117
ZeroCopyOutputStream
* const output_;
zero_copy_stream_impl_lite.h
93
// A
ZeroCopyOutputStream
backed by an in-memory array of bytes.
94
class LIBPROTOBUF_EXPORT ArrayOutputStream : public
ZeroCopyOutputStream
{
106
// implements
ZeroCopyOutputStream
---------------------------------
125
// A
ZeroCopyOutputStream
which appends bytes to a string.
126
class LIBPROTOBUF_EXPORT StringOutputStream : public
ZeroCopyOutputStream
{
138
// implements
ZeroCopyOutputStream
---------------------------------
256
// interface and make a
ZeroCopyOutputStream
based on it, simply implement
271
// A
ZeroCopyOutputStream
which writes to a CopyingOutputStream. This is
278
class LIBPROTOBUF_EXPORT CopyingOutputStreamAdaptor : public
ZeroCopyOutputStream
{
297
// implements
ZeroCopyOutputStream
--------------------------------
[
all
...]
gzip_stream.cc
177
GzipOutputStream::GzipOutputStream(
ZeroCopyOutputStream
* sub_stream) {
181
GzipOutputStream::GzipOutputStream(
ZeroCopyOutputStream
* sub_stream,
187
ZeroCopyOutputStream
* sub_stream, Format format, int buffer_size) {
196
void GzipOutputStream::Init(
ZeroCopyOutputStream
* sub_stream,
265
// implements
ZeroCopyOutputStream
---------------------------------
zero_copy_stream_impl.h
134
// A
ZeroCopyOutputStream
which writes to a file descriptor.
141
class LIBPROTOBUF_EXPORT FileOutputStream : public
ZeroCopyOutputStream
{
173
// implements
ZeroCopyOutputStream
---------------------------------
255
// A
ZeroCopyOutputStream
which writes to a C++ ostream.
259
class LIBPROTOBUF_EXPORT OstreamOutputStream : public
ZeroCopyOutputStream
{
268
// implements
ZeroCopyOutputStream
---------------------------------
zero_copy_stream_unittest.cc
96
bool WriteToOutput(
ZeroCopyOutputStream
* output, const void* data, int size);
100
void WriteString(
ZeroCopyOutputStream
* output, const string& str);
107
int WriteStuff(
ZeroCopyOutputStream
* output);
113
int WriteStuffLarge(
ZeroCopyOutputStream
* output);
130
bool IoTest::WriteToOutput(
ZeroCopyOutputStream
* output,
193
void IoTest::WriteString(
ZeroCopyOutputStream
* output, const string& str) {
204
int IoTest::WriteStuff(
ZeroCopyOutputStream
* output) {
236
int IoTest::WriteStuffLarge(
ZeroCopyOutputStream
* output) {
coded_stream.h
36
// which wrap a ZeroCopyInputStream or
ZeroCopyOutputStream
, respectively,
53
//
ZeroCopyOutputStream
* raw_output = new FileOutputStream(fd);
134
class
ZeroCopyOutputStream
; // zero_copy_stream.h
533
// encoded integers and fixed-width pieces. Wraps a
ZeroCopyOutputStream
.
580
// Create an CodedOutputStream that writes to the given
ZeroCopyOutputStream
.
581
explicit CodedOutputStream(
ZeroCopyOutputStream
* output);
584
//
ZeroCopyOutputStream
immediately after the last byte written.
680
ZeroCopyOutputStream
* output_;
[
all
...]
printer.cc
44
Printer::Printer(
ZeroCopyOutputStream
* output, char variable_delimiter)
/external/protobuf/src/google/protobuf/compiler/
zip_writer.h
43
ZipWriter(io::
ZeroCopyOutputStream
* raw_output);
57
io::
ZeroCopyOutputStream
* raw_output_;
code_generator.h
49
namespace io { class
ZeroCopyOutputStream
; }
95
//
ZeroCopyOutputStream
that writes to the file. The caller takes ownership
104
virtual io::
ZeroCopyOutputStream
* Open(const string& filename) = 0;
106
// Creates a
ZeroCopyOutputStream
which will insert code into the given file
112
virtual io::
ZeroCopyOutputStream
* OpenForInsert(