Lines Matching defs:Schema

27                                const MemProfSchema &Schema) {
34 Size += PortableMemInfoBlock::serializedSize(Schema);
39 const MemProfSchema &Schema) {
44 Size += PortableMemInfoBlock::serializedSize(Schema);
49 const MemProfSchema &Schema) {
54 Size += PortableMemInfoBlock::serializedSize(Schema);
58 size_t IndexedAllocationInfo::serializedSize(const MemProfSchema &Schema,
63 return serializedSizeV0(*this, Schema);
65 return serializedSizeV2(*this, Schema);
67 return serializedSizeV3(*this, Schema);
73 const MemProfSchema &Schema) {
77 Result += N.serializedSize(Schema, Version0);
90 const MemProfSchema &Schema) {
94 Result += N.serializedSize(Schema, Version2);
104 const MemProfSchema &Schema) {
108 Result += N.serializedSize(Schema, Version3);
117 size_t IndexedMemProfRecord::serializedSize(const MemProfSchema &Schema,
122 return serializedSizeV0(*this, Schema);
124 return serializedSizeV2(*this, Schema);
126 return serializedSizeV3(*this, Schema);
132 const MemProfSchema &Schema, raw_ostream &OS) {
142 N.Info.serialize(Schema, OS);
155 const MemProfSchema &Schema, raw_ostream &OS) {
163 N.Info.serialize(Schema, OS);
173 const IndexedMemProfRecord &Record, const MemProfSchema &Schema,
184 N.Info.serialize(Schema, OS);
196 const MemProfSchema &Schema, raw_ostream &OS, IndexedVersion Version,
202 serializeV0(*this, Schema, OS);
205 serializeV2(*this, Schema, OS);
208 serializeV3(*this, Schema, OS, *MemProfCallStackIndexes);
214 static IndexedMemProfRecord deserializeV0(const MemProfSchema &Schema,
233 Node.Info.deserialize(Schema, Ptr);
234 Ptr += PortableMemInfoBlock::serializedSize(Schema);
258 static IndexedMemProfRecord deserializeV2(const MemProfSchema &Schema,
271 Node.Info.deserialize(Schema, Ptr);
272 Ptr += PortableMemInfoBlock::serializedSize(Schema);
289 static IndexedMemProfRecord deserializeV3(const MemProfSchema &Schema,
303 Node.Info.deserialize(Schema, Ptr);
304 Ptr += PortableMemInfoBlock::serializedSize(Schema);
326 IndexedMemProfRecord::deserialize(const MemProfSchema &Schema,
332 return deserializeV0(Schema, Ptr);
334 return deserializeV2(Schema, Ptr);
336 return deserializeV3(Schema, Ptr);