HomeSort by relevance Sort by last modified time
    Searched refs:BackUp (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream.h 98 // output->BackUp(size - bytes);
151 // buffer that goes beyond what you wanted to read, you can use BackUp()
163 virtual void BackUp(int count) = 0;
202 // written to the output (unless BackUp() is called).
212 // end of your data, so you use BackUp() to back up.
224 virtual void BackUp(int count) = 0;
zero_copy_stream_impl_lite.h 74 void BackUp(int count);
108 void BackUp(int count);
140 void BackUp(int count);
211 void BackUp(int count);
242 // BackUp(). These need to be returned again.
299 void BackUp(int count);
327 // returned by Next()). When BackUp() is called, we just reduce this.
zero_copy_stream_impl.cc 93 void FileInputStream::BackUp(int count) {
94 impl_.BackUp(count);
196 void FileOutputStream::BackUp(int count) {
197 impl_.BackUp(count);
283 void IstreamInputStream::BackUp(int count) {
284 impl_.BackUp(count);
327 void OstreamOutputStream::BackUp(int count) {
328 impl_.BackUp(count);
373 void ConcatenatingInputStream::BackUp(int count) {
375 streams_[0]->BackUp(count)
    [all...]
zero_copy_stream_impl.h 92 void BackUp(int count);
175 void BackUp(int count);
226 void BackUp(int count);
270 void BackUp(int count);
313 void BackUp(int count);
339 void BackUp(int count);
gzip_stream.h 87 void BackUp(int count);
180 void BackUp(int count);
zero_copy_stream_impl_lite.cc 80 void ArrayInputStream::BackUp(int count) {
82 << "BackUp() can only be called after a successful Next().";
133 void ArrayOutputStream::BackUp(int count) {
135 << "BackUp() can only be called after a successful Next().";
177 void StringOutputStream::BackUp(int count) {
232 // We have data left over from a previous BackUp(), so just return that.
257 void CopyingInputStreamAdaptor::BackUp(int count) {
259 << " BackUp() can only be called after Next().";
264 << " Parameter to BackUp() can't be negative.";
277 // First skip any bytes left over from a previous BackUp()
    [all...]
gzip_stream.cc 163 void GzipInputStream::BackUp(int count) {
176 BackUp(size - count);
262 sub_stream_->BackUp(zcontext_.avail_out);
293 void GzipOutputStream::BackUp(int count) {
printer.cc 53 // Only BackUp() if we have called Next() at least once and never failed.
55 output_->BackUp(buffer_size_);
coded_stream.cc 89 input_->BackUp(backup_bytes);
530 // we discarded, though, so that we can call input_->BackUp() to back
569 output_->BackUp(buffer_size_);
tokenizer_unittest.cc 143 void BackUp(int count) { return array_stream_.BackUp(count); }
    [all...]
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream.h 98 // output->BackUp(size - bytes);
151 // buffer that goes beyond what you wanted to read, you can use BackUp()
163 virtual void BackUp(int count) = 0;
202 // written to the output (unless BackUp() is called).
212 // end of your data, so you use BackUp() to back up.
224 virtual void BackUp(int count) = 0;
zero_copy_stream_impl_lite.h 74 void BackUp(int count);
108 void BackUp(int count);
140 void BackUp(int count);
211 void BackUp(int count);
242 // BackUp(). These need to be returned again.
299 void BackUp(int count);
327 // returned by Next()). When BackUp() is called, we just reduce this.
zero_copy_stream_impl.cc 92 void FileInputStream::BackUp(int count) {
93 impl_.BackUp(count);
195 void FileOutputStream::BackUp(int count) {
196 impl_.BackUp(count);
282 void IstreamInputStream::BackUp(int count) {
283 impl_.BackUp(count);
326 void OstreamOutputStream::BackUp(int count) {
327 impl_.BackUp(count);
372 void ConcatenatingInputStream::BackUp(int count) {
374 streams_[0]->BackUp(count)
    [all...]
zero_copy_stream_impl.h 92 void BackUp(int count);
175 void BackUp(int count);
226 void BackUp(int count);
270 void BackUp(int count);
313 void BackUp(int count);
339 void BackUp(int count);
gzip_stream.h 86 void BackUp(int count);
178 void BackUp(int count);
zero_copy_stream_impl_lite.cc 78 void ArrayInputStream::BackUp(int count) {
80 << "BackUp() can only be called after a successful Next().";
131 void ArrayOutputStream::BackUp(int count) {
133 << "BackUp() can only be called after a successful Next().";
175 void StringOutputStream::BackUp(int count) {
230 // We have data left over from a previous BackUp(), so just return that.
255 void CopyingInputStreamAdaptor::BackUp(int count) {
257 << " BackUp() can only be called after Next().";
262 << " Parameter to BackUp() can't be negative.";
275 // First skip any bytes left over from a previous BackUp()
    [all...]
gzip_stream.cc 147 void GzipInputStream::BackUp(int count) {
160 BackUp(size - count);
257 sub_stream_->BackUp(zcontext_.avail_out);
288 void GzipOutputStream::BackUp(int count) {
printer.cc 54 // Only BackUp() if we're sure we've successfully called Next() at least once.
56 output_->BackUp(buffer_size_);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
zcgzip.cc 70 out.BackUp(outlen);
74 out.BackUp(outlen - readlen);
  /external/protobuf/src/google/protobuf/testing/
zcgzip.cc 70 out.BackUp(outlen);
74 out.BackUp(outlen - readlen);
  /external/chromium_org/google_apis/gcm/base/
socket_stream.h 70 virtual void BackUp(int count) OVERRIDE;
166 virtual void BackUp(int count) OVERRIDE;
socket_stream.cc 57 void SocketInputStream::BackUp(int count) {
239 void SocketOutputStream::BackUp(int count) {
socket_stream_unittest.cc 125 socket_input_stream_->BackUp(total_bytes_read - bytes);
149 socket_output_stream_->BackUp(size - bytes_to_write);
  /external/chromium_org/remoting/base/
compound_buffer.h 112 virtual void BackUp(int count) OVERRIDE;
compound_buffer.cc 228 // to zero to prevent any backup request.
235 void CompoundBufferInputStream::BackUp(int count) {

Completed in 1008 milliseconds

1 2