Home
last modified time | relevance | path

Searched refs:WireFormat (Results 1 – 25 of 141) sorted by relevance

123456

/external/vm_tools/p9/wire_format_derive/
Dwire_format_derive.rs54 use protocol::WireFormat; in p9_wire_format_inner()
56 impl WireFormat for #container { in p9_wire_format_inner() impl
81 WireFormat::byte_size(&self.#field) in byte_size_sum()
104 WireFormat::encode(&self.#field, _writer)?; in encode_wire_format()
129 let #field = WireFormat::decode(_reader)?; in decode_wire_format()
171 + WireFormat::byte_size(&self.ident) in byte_size()
172 + WireFormat::byte_size(&self.with_underscores) in byte_size()
173 + WireFormat::byte_size(&self.other) in byte_size()
190 WireFormat::encode(&self.ident, _writer)?; in encode()
191 WireFormat::encode(&self.with_underscores, _writer)?; in encode()
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DUnknownFieldSetLite.java134 int fieldNumber = WireFormat.getTagFieldNumber(tag); in writeTo()
135 switch (WireFormat.getTagWireType(tag)) { in writeTo()
136 case WireFormat.WIRETYPE_VARINT: in writeTo()
139 case WireFormat.WIRETYPE_FIXED32: in writeTo()
142 case WireFormat.WIRETYPE_FIXED64: in writeTo()
145 case WireFormat.WIRETYPE_LENGTH_DELIMITED: in writeTo()
148 case WireFormat.WIRETYPE_START_GROUP: in writeTo()
149 output.writeTag(fieldNumber, WireFormat.WIRETYPE_START_GROUP); in writeTo()
151 output.writeTag(fieldNumber, WireFormat.WIRETYPE_END_GROUP); in writeTo()
166 int fieldNumber = WireFormat.getTagFieldNumber(tags[i]); in writeAsMessageSetTo()
[all …]
DCodedOutputStream.java33 import static com.google.protobuf.WireFormat.FIXED32_SIZE;
34 import static com.google.protobuf.WireFormat.FIXED64_SIZE;
35 import static com.google.protobuf.WireFormat.MAX_VARINT32_SIZE;
36 import static com.google.protobuf.WireFormat.MAX_VARINT_SIZE;
678 return computeTagSize(WireFormat.MESSAGE_SET_ITEM) * 2 in computeMessageSetExtensionSize()
679 + computeUInt32Size(WireFormat.MESSAGE_SET_TYPE_ID, fieldNumber) in computeMessageSetExtensionSize()
680 + computeMessageSize(WireFormat.MESSAGE_SET_MESSAGE, value); in computeMessageSetExtensionSize()
689 return computeTagSize(WireFormat.MESSAGE_SET_ITEM) * 2 in computeRawMessageSetExtensionSize()
690 + computeUInt32Size(WireFormat.MESSAGE_SET_TYPE_ID, fieldNumber) in computeRawMessageSetExtensionSize()
691 + computeBytesSize(WireFormat.MESSAGE_SET_MESSAGE, value); in computeRawMessageSetExtensionSize()
[all …]
DUnknownFieldSchema.java83 int fieldNumber = WireFormat.getTagFieldNumber(tag); in mergeOneFieldFrom()
84 switch (WireFormat.getTagWireType(tag)) { in mergeOneFieldFrom()
85 case WireFormat.WIRETYPE_VARINT: in mergeOneFieldFrom()
88 case WireFormat.WIRETYPE_FIXED32: in mergeOneFieldFrom()
91 case WireFormat.WIRETYPE_FIXED64: in mergeOneFieldFrom()
94 case WireFormat.WIRETYPE_LENGTH_DELIMITED: in mergeOneFieldFrom()
97 case WireFormat.WIRETYPE_START_GROUP: in mergeOneFieldFrom()
99 int endGroupTag = WireFormat.makeTag(fieldNumber, WireFormat.WIRETYPE_END_GROUP); in mergeOneFieldFrom()
106 case WireFormat.WIRETYPE_END_GROUP: in mergeOneFieldFrom()
DCodedInputStream.java37 import static com.google.protobuf.WireFormat.FIXED32_SIZE;
38 import static com.google.protobuf.WireFormat.FIXED64_SIZE;
39 import static com.google.protobuf.WireFormat.MAX_VARINT_SIZE;
622 if (WireFormat.getTagFieldNumber(lastTag) == 0) { in readTag()
644 switch (WireFormat.getTagWireType(tag)) { in skipField()
645 case WireFormat.WIRETYPE_VARINT: in skipField()
648 case WireFormat.WIRETYPE_FIXED64: in skipField()
651 case WireFormat.WIRETYPE_LENGTH_DELIMITED: in skipField()
654 case WireFormat.WIRETYPE_START_GROUP: in skipField()
657 WireFormat.makeTag(WireFormat.getTagFieldNumber(tag), WireFormat.WIRETYPE_END_GROUP)); in skipField()
[all …]
DMessageSetSchema.java108 if (fd.getLiteJavaType() != WireFormat.JavaType.MESSAGE || fd.isRepeated() || fd.isPacked()) { in writeTo()
146 if (startTag != WireFormat.MESSAGE_SET_ITEM_TAG) { in mergeFrom()
147 if (WireFormat.getTagWireType(startTag) == WireFormat.WIRETYPE_LENGTH_DELIMITED) { in mergeFrom()
151 WireFormat.getTagFieldNumber(startTag)); in mergeFrom()
176 final int number = WireFormat.getTagFieldNumber(tag); in mergeFrom()
177 final int wireType = WireFormat.getTagWireType(tag); in mergeFrom()
179 case WireFormat.MESSAGE_SET_TYPE_ID: in mergeFrom()
180 if (wireType == WireFormat.WIRETYPE_VARINT) { in mergeFrom()
189 case WireFormat.MESSAGE_SET_MESSAGE: in mergeFrom()
198 if (wireType == WireFormat.WIRETYPE_LENGTH_DELIMITED) { in mergeFrom()
[all …]
DUnknownFieldSetLiteSchema.java53 fields.storeField(WireFormat.makeTag(number, WireFormat.WIRETYPE_VARINT), value); in addVarint()
58 fields.storeField(WireFormat.makeTag(number, WireFormat.WIRETYPE_FIXED32), value); in addFixed32()
63 fields.storeField(WireFormat.makeTag(number, WireFormat.WIRETYPE_FIXED64), value); in addFixed64()
68 fields.storeField(WireFormat.makeTag(number, WireFormat.WIRETYPE_LENGTH_DELIMITED), value); in addLengthDelimited()
73 fields.storeField(WireFormat.makeTag(number, WireFormat.WIRETYPE_START_GROUP), subFieldSet); in addGroup()
DCodedInputStreamReader.java33 import static com.google.protobuf.WireFormat.FIXED32_SIZE;
34 import static com.google.protobuf.WireFormat.FIXED64_SIZE;
35 import static com.google.protobuf.WireFormat.WIRETYPE_END_GROUP;
36 import static com.google.protobuf.WireFormat.WIRETYPE_FIXED32;
37 import static com.google.protobuf.WireFormat.WIRETYPE_FIXED64;
38 import static com.google.protobuf.WireFormat.WIRETYPE_LENGTH_DELIMITED;
39 import static com.google.protobuf.WireFormat.WIRETYPE_START_GROUP;
40 import static com.google.protobuf.WireFormat.WIRETYPE_VARINT;
86 return WireFormat.getTagFieldNumber(tag); in getFieldNumber()
103 if (WireFormat.getTagWireType(tag) != requiredWireType) { in requireWireType()
[all …]
DMapEntryLite.java48 public final WireFormat.FieldType keyType;
50 public final WireFormat.FieldType valueType;
54 WireFormat.FieldType keyType, in Metadata()
56 WireFormat.FieldType valueType, in Metadata()
74 WireFormat.FieldType keyType, K defaultKey, WireFormat.FieldType valueType, V defaultValue) { in MapEntryLite()
103 WireFormat.FieldType keyType, K defaultKey, WireFormat.FieldType valueType, V defaultValue) { in newDefaultInstance()
122 WireFormat.FieldType type, in parseField()
146 output.writeTag(fieldNumber, WireFormat.WIRETYPE_LENGTH_DELIMITED); in serializeTo()
181 if (tag == WireFormat.makeTag(KEY_FIELD_NUMBER, metadata.keyType.getWireType())) { in parseEntry()
183 } else if (tag == WireFormat.makeTag(VALUE_FIELD_NUMBER, metadata.valueType.getWireType())) { in parseEntry()
[all …]
DBinaryReader.java33 import static com.google.protobuf.WireFormat.FIXED32_SIZE;
34 import static com.google.protobuf.WireFormat.FIXED64_SIZE;
35 import static com.google.protobuf.WireFormat.WIRETYPE_END_GROUP;
36 import static com.google.protobuf.WireFormat.WIRETYPE_FIXED32;
37 import static com.google.protobuf.WireFormat.WIRETYPE_FIXED64;
38 import static com.google.protobuf.WireFormat.WIRETYPE_LENGTH_DELIMITED;
39 import static com.google.protobuf.WireFormat.WIRETYPE_START_GROUP;
40 import static com.google.protobuf.WireFormat.WIRETYPE_VARINT;
125 return WireFormat.getTagFieldNumber(tag); in getFieldNumber()
139 switch (WireFormat.getTagWireType(tag)) { in skipField()
[all …]
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DCodedInputStreamTest.cs274 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadMaliciouslyLargeBlob()
348 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadInvalidUtf8()
399 output.WriteTag(1, WireFormat.WireType.LengthDelimited); in TestSlowPathAvoidance()
401 output.WriteTag(2, WireFormat.WireType.LengthDelimited); in TestSlowPathAvoidance()
409 Assert.AreEqual(1, WireFormat.GetTagFieldNumber(tag)); in TestSlowPathAvoidance()
413 Assert.AreEqual(2, WireFormat.GetTagFieldNumber(tag)); in TestSlowPathAvoidance()
438 output.WriteTag(1, WireFormat.WireType.LengthDelimited); in SkipGroup()
442 output.WriteTag(2, WireFormat.WireType.StartGroup); in SkipGroup()
443 output.WriteTag(1, WireFormat.WireType.Fixed32); in SkipGroup()
445 output.WriteTag(2, WireFormat.WireType.LengthDelimited); in SkipGroup()
[all …]
DGeneratedMessageTest.cs259 … output.WriteTag(TestMap.MapInt32ForeignMessageFieldNumber, WireFormat.WireType.LengthDelimited); in MapWithOnlyValue()
263 output.WriteTag(2, WireFormat.WireType.LengthDelimited); in MapWithOnlyValue()
277 output.WriteTag(TestMap.MapInt32DoubleFieldNumber, WireFormat.WireType.LengthDelimited); in MapWithOnlyKey_PrimitiveValue()
280 output.WriteTag(1, WireFormat.WireType.Varint); in MapWithOnlyKey_PrimitiveValue()
294 … output.WriteTag(TestMap.MapInt32ForeignMessageFieldNumber, WireFormat.WireType.LengthDelimited); in MapWithOnlyKey_MessageValue()
297 output.WriteTag(1, WireFormat.WireType.Varint); in MapWithOnlyKey_MessageValue()
312 output.WriteTag(TestMap.MapInt32Int32FieldNumber, WireFormat.WireType.LengthDelimited); in MapIgnoresExtraFieldsWithinEntryMessages()
321 output.WriteTag(1, WireFormat.WireType.Varint); in MapIgnoresExtraFieldsWithinEntryMessages()
323 output.WriteTag(2, WireFormat.WireType.Varint); in MapIgnoresExtraFieldsWithinEntryMessages()
325 output.WriteTag(3, WireFormat.WireType.Varint); in MapIgnoresExtraFieldsWithinEntryMessages()
[all …]
/external/protobuf/csharp/src/Google.Protobuf.Test/
DCodedInputStreamTest.cs274 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadMaliciouslyLargeBlob()
362 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadInvalidUtf8()
382 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadNegativeSizedStringThrowsInvalidProtocolBufferException()
400 uint tag = WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited); in ReadNegativeSizedBytesThrowsInvalidProtocolBufferException()
449 output.WriteTag(1, WireFormat.WireType.LengthDelimited); in TestSlowPathAvoidance()
451 output.WriteTag(2, WireFormat.WireType.LengthDelimited); in TestSlowPathAvoidance()
459 Assert.AreEqual(1, WireFormat.GetTagFieldNumber(tag)); in TestSlowPathAvoidance()
463 Assert.AreEqual(2, WireFormat.GetTagFieldNumber(tag)); in TestSlowPathAvoidance()
488 output.WriteTag(1, WireFormat.WireType.LengthDelimited); in SkipGroup()
492 output.WriteTag(2, WireFormat.WireType.StartGroup); in SkipGroup()
[all …]
DGeneratedMessageTest.cs259 … output.WriteTag(TestMap.MapInt32ForeignMessageFieldNumber, WireFormat.WireType.LengthDelimited); in MapWithOnlyValue()
263 output.WriteTag(2, WireFormat.WireType.LengthDelimited); in MapWithOnlyValue()
277 output.WriteTag(TestMap.MapInt32DoubleFieldNumber, WireFormat.WireType.LengthDelimited); in MapWithOnlyKey_PrimitiveValue()
280 output.WriteTag(1, WireFormat.WireType.Varint); in MapWithOnlyKey_PrimitiveValue()
294 … output.WriteTag(TestMap.MapInt32ForeignMessageFieldNumber, WireFormat.WireType.LengthDelimited); in MapWithOnlyKey_MessageValue()
297 output.WriteTag(1, WireFormat.WireType.Varint); in MapWithOnlyKey_MessageValue()
312 output.WriteTag(TestMap.MapInt32Int32FieldNumber, WireFormat.WireType.LengthDelimited); in MapIgnoresExtraFieldsWithinEntryMessages()
321 output.WriteTag(1, WireFormat.WireType.Varint); in MapIgnoresExtraFieldsWithinEntryMessages()
323 output.WriteTag(2, WireFormat.WireType.Varint); in MapIgnoresExtraFieldsWithinEntryMessages()
325 output.WriteTag(3, WireFormat.WireType.Varint); in MapIgnoresExtraFieldsWithinEntryMessages()
[all …]
/external/vm_tools/p9/src/protocol/
Dmessages.rs10 use crate::protocol::wire_format::{Data, WireFormat};
123 impl WireFormat for Tframe {
230 let byte_size: u32 = WireFormat::decode(reader)?; in decode()
247 let tag: u16 = WireFormat::decode(reader)?; in decode()
250 TVERSION => Ok(Tmessage::Version(WireFormat::decode(reader)?)), in decode()
251 TFLUSH => Ok(Tmessage::Flush(WireFormat::decode(reader)?)), in decode()
252 TWALK => Ok(Tmessage::Walk(WireFormat::decode(reader)?)), in decode()
253 TREAD => Ok(Tmessage::Read(WireFormat::decode(reader)?)), in decode()
254 TWRITE => Ok(Tmessage::Write(WireFormat::decode(reader)?)), in decode()
255 TCLUNK => Ok(Tmessage::Clunk(WireFormat::decode(reader)?)), in decode()
[all …]
Dwire_format.rs14 pub trait WireFormat: std::marker::Sized { trait
32 impl WireFormat for $Ty { impl
70 impl WireFormat for String {
88 let len: u16 = WireFormat::decode(reader)?; in decode()
97 impl<T: WireFormat> WireFormat for Vec<T> {
119 let len: u16 = WireFormat::decode(reader)?; in decode()
123 result.push(WireFormat::decode(reader)?); in decode()
163 impl WireFormat for Data {
177 let len: u32 = WireFormat::decode(reader)?; in decode()
224 WireFormat::decode(&mut Cursor::new(&buf)).unwrap() in integer_decode()
[all …]
/external/protobuf/src/google/protobuf/
Dwire_format.h78 class PROTOBUF_EXPORT WireFormat {
251 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
272 inline WireFormatLite::WireType WireFormat::WireTypeForField( in WireTypeForField()
281 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType( in WireTypeForFieldType()
289 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) { in MakeTag()
293 inline size_t WireFormat::TagSize(int field_number, in TagSize()
302 inline void WireFormat::VerifyUTF8String(const char* data, int size, in VerifyUTF8String()
303 WireFormat::Operation op) { in VerifyUTF8String()
315 inline void WireFormat::VerifyUTF8StringNamedField(const char* data, int size, in VerifyUTF8StringNamedField()
316 WireFormat::Operation op, in VerifyUTF8StringNamedField()
[all …]
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs309 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32()
325 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32()
337 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in AddEntriesFrom_NonPackedInt32()
351 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_NonPackedInt32()
363 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_String()
389 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_Message()
410 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_PackedInt32()
431 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in WriteTo_NonPackedInt32()
452 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_String()
475 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_Message()
[all …]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DWireFormatLiteTest.java470 output.writeTag(1, WireFormat.WIRETYPE_START_GROUP); in testMergeMessageSetExtensionWithFlag()
473 output.writeTag(1, WireFormat.WIRETYPE_END_GROUP); in testMergeMessageSetExtensionWithFlag()
553 (byte) WireFormat.makeTag(1, 6), in testParserRejectInvalidTag()
554 (byte) WireFormat.makeTag(1, 7), in testParserRejectInvalidTag()
556 (byte) WireFormat.makeTag(0, WireFormat.WIRETYPE_VARINT), in testParserRejectInvalidTag()
566 (byte) WireFormat.makeTag(1, WireFormat.WIRETYPE_START_GROUP), in testParserRejectInvalidTag()
569 (byte) WireFormat.makeTag(1, WireFormat.WIRETYPE_END_GROUP), in testParserRejectInvalidTag()
576 (byte) WireFormat.MESSAGE_SET_ITEM_TAG, in testParserRejectInvalidTag()
577 (byte) WireFormat.MESSAGE_SET_TYPE_ID_TAG, in testParserRejectInvalidTag()
579 (byte) WireFormat.MESSAGE_SET_MESSAGE_TAG, in testParserRejectInvalidTag()
[all …]
DProto2ExtensionLookupSchemaTest.java87 WireFormat.makeTag(Proto2Message.FIELD_ENUM_13_FIELD_NUMBER, WireFormat.WIRETYPE_VARINT), in testUnknownEnum()
90 WireFormat.makeTag( in testUnknownEnum()
91 Proto2Message.FIELD_ENUM_LIST_30_FIELD_NUMBER, WireFormat.WIRETYPE_VARINT), in testUnknownEnum()
94 WireFormat.makeTag( in testUnknownEnum()
95 Proto2Message.FIELD_ENUM_LIST_30_FIELD_NUMBER, WireFormat.WIRETYPE_VARINT), in testUnknownEnum()
98 WireFormat.makeTag( in testUnknownEnum()
99 Proto2Message.FIELD_ENUM_LIST_30_FIELD_NUMBER, WireFormat.WIRETYPE_VARINT), in testUnknownEnum()
114 WireFormat.makeTag( in testUnknownEnum()
116 WireFormat.WIRETYPE_LENGTH_DELIMITED), in testUnknownEnum()
DAbstractProto2LiteSchemaTest.java146 WireFormat.makeTag( in unknownEnum()
147 Proto2MessageLite.FIELD_ENUM_13_FIELD_NUMBER, WireFormat.WIRETYPE_VARINT), in unknownEnum()
150 WireFormat.makeTag( in unknownEnum()
151 Proto2MessageLite.FIELD_ENUM_LIST_30_FIELD_NUMBER, WireFormat.WIRETYPE_VARINT), in unknownEnum()
154 WireFormat.makeTag( in unknownEnum()
155 Proto2MessageLite.FIELD_ENUM_LIST_30_FIELD_NUMBER, WireFormat.WIRETYPE_VARINT), in unknownEnum()
158 WireFormat.makeTag( in unknownEnum()
159 Proto2MessageLite.FIELD_ENUM_LIST_30_FIELD_NUMBER, WireFormat.WIRETYPE_VARINT), in unknownEnum()
174 WireFormat.makeTag( in unknownEnum()
176 WireFormat.WIRETYPE_LENGTH_DELIMITED), in unknownEnum()
/external/protobuf/csharp/src/Google.Protobuf/
DUnknownFieldSet.cs189 int number = WireFormat.GetTagFieldNumber(tag); in MergeFieldFrom()
190 switch (WireFormat.GetTagWireType(tag)) in MergeFieldFrom()
192 case WireFormat.WireType.Varint: in MergeFieldFrom()
198 case WireFormat.WireType.Fixed32: in MergeFieldFrom()
204 case WireFormat.WireType.Fixed64: in MergeFieldFrom()
210 case WireFormat.WireType.LengthDelimited: in MergeFieldFrom()
216 case WireFormat.WireType.StartGroup: in MergeFieldFrom()
218 uint endTag = WireFormat.MakeTag(number, WireFormat.WireType.EndGroup); in MergeFieldFrom()
227 case WireFormat.WireType.EndGroup: in MergeFieldFrom()
DFieldCodec.cs514 …{ typeof(bool), ForBool(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.…
515 …{ typeof(int), ForInt32(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat.…
516 …{ typeof(long), ForInt64(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFormat
517 …{ typeof(uint), ForUInt32(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForma…
518 …{ typeof(ulong), ForUInt64(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForm…
519 …{ typeof(float), ForFloat(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireForma…
520 …{ typeof(double), ForDouble(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFor…
521 …{ typeof(string), ForString(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, WireFor…
522 …{ typeof(ByteString), ForBytes(WireFormat.MakeTag(WrappersReflection.WrapperValueFieldNumber, Wire…
624 … TypeSupportsPacking && WireFormat.GetTagWireType(tag) == WireFormat.WireType.LengthDelimited;
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/
DRepeatedFieldTest.cs309 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32()
325 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_PackedInt32()
337 uint nonPackedTag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in AddEntriesFrom_NonPackedInt32()
351 uint packedTag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_NonPackedInt32()
363 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_String()
389 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in AddEntriesFrom_Message()
410 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_PackedInt32()
431 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.Varint); in WriteTo_NonPackedInt32()
452 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_String()
475 uint tag = WireFormat.MakeTag(10, WireFormat.WireType.LengthDelimited); in WriteTo_Message()
[all …]
/external/protobuf/src/google/protobuf/compiler/
Dplugin.pb.cc408 ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( in MergePartialFromCodedStream()
410 ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::PARSE, in MergePartialFromCodedStream()
423 DO_(::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SkipField( in MergePartialFromCodedStream()
463 ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( in SerializeWithCachedSizes()
465 ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, in SerializeWithCachedSizes()
472 ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SerializeUnknownFields( in SerializeWithCachedSizes()
502 ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( in InternalSerializeWithCachedSizesToArray()
504 ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, in InternalSerializeWithCachedSizesToArray()
512 target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SerializeUnknownFieldsToArray( in InternalSerializeWithCachedSizesToArray()
525 ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::ComputeUnknownFieldsSize( in ByteSizeLong()
[all …]

123456