Home
last modified time | relevance | path

Searched refs:SkipMessage (Results 1 – 7 of 7) sorted by relevance

/external/protobuf/src/google/protobuf/
Dwire_format_lite.cc143 if (!SkipMessage(input)) return false; in SkipField()
200 if (!SkipMessage(input, output)) return false; in SkipField()
226 bool WireFormatLite::SkipMessage(io::CodedInputStream* input) { in SkipMessage() function in google::protobuf::internal::WireFormatLite
245 bool WireFormatLite::SkipMessage(io::CodedInputStream* input, in SkipMessage() function in google::protobuf::internal::WireFormatLite
270 bool FieldSkipper::SkipMessage(io::CodedInputStream* input) { in SkipMessage() function in google::protobuf::internal::FieldSkipper
271 return WireFormatLite::SkipMessage(input); in SkipMessage()
283 bool CodedOutputStreamFieldSkipper::SkipMessage(io::CodedInputStream* input) { in SkipMessage() function in google::protobuf::internal::CodedOutputStreamFieldSkipper
284 return WireFormatLite::SkipMessage(input, unknown_fields_); in SkipMessage()
Dwire_format.h139 static bool SkipMessage(io::CodedInputStream* input,
263 bool SkipMessage(io::CodedInputStream* input) override;
Dimplicit_weak_message.cc54 return WireFormatLite::SkipMessage(input, &coded_stream);
Dwire_format.cc76 bool UnknownFieldSetFieldSkipper::SkipMessage(io::CodedInputStream* input) { in SkipMessage() function in google::protobuf::internal::UnknownFieldSetFieldSkipper
77 return WireFormat::SkipMessage(input, unknown_fields_); in SkipMessage()
118 if (!SkipMessage(input, (unknown_fields == NULL) in SkipField()
147 bool WireFormat::SkipMessage(io::CodedInputStream* input, in SkipMessage() function in google::protobuf::internal::WireFormat
Dunknown_field_set.cc215 if (internal::WireFormat::SkipMessage(input, &other) && in MergeFromCodedStream()
Dwire_format_lite.h191 static bool SkipMessage(io::CodedInputStream* input);
195 static bool SkipMessage(io::CodedInputStream* input,
736 virtual bool SkipMessage(io::CodedInputStream* input);
754 bool SkipMessage(io::CodedInputStream* input) override;
Dwire_format_unittest.cc1199 EXPECT_FALSE(WireFormat::SkipMessage(&coded_input, &unknown_fields)); in TEST_F()