OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:backup_bytes_
(Results
1 - 2
of
2
) sorted by null
/external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl_lite.cc
212
backup_bytes_
(0) {
229
if (
backup_bytes_
> 0) {
231
*data = buffer_.get() + buffer_used_ -
backup_bytes_
;
232
*size =
backup_bytes_
;
233
backup_bytes_
= 0;
256
GOOGLE_CHECK(
backup_bytes_
== 0 && buffer_.get() != NULL)
264
backup_bytes_
= count;
276
if (
backup_bytes_
>= count) {
278
backup_bytes_
-= count;
282
count -=
backup_bytes_
;
[
all
...]
zero_copy_stream_impl_lite.h
243
// 0 <=
backup_bytes_
<= buffer_used_
244
int
backup_bytes_
;
member in class:google::protobuf::io::CopyingInputStreamAdaptor
Completed in 950 milliseconds