Home
last modified time | relevance | path

Searched refs:BatchProto (Results 1 – 2 of 2) sorted by relevance

/external/perfetto/src/trace_processor/rpc/
Dquery_result_serializer.cc34 using BatchProto = protos::pbzero::QueryResult::CellsBatch; typedef
95 BatchProto::kStringCellsFieldNumber); in SerializeBatch()
140 uint8_t cell_type = BatchProto::CELL_INVALID; in SerializeBatch()
143 cell_type = BatchProto::CELL_NULL; in SerializeBatch()
147 cell_type = BatchProto::CELL_VARINT; in SerializeBatch()
153 cell_type = BatchProto::CELL_FLOAT64; in SerializeBatch()
163 cell_type = BatchProto::CELL_STRING; in SerializeBatch()
174 cell_type = BatchProto::CELL_BLOB; in SerializeBatch()
179 *(preamble_end++) = MakeLenDelimTag(BatchProto::kBlobCellsFieldNumber); in SerializeBatch()
188 PERFETTO_DCHECK(cell_type != BatchProto::CELL_INVALID); in SerializeBatch()
[all …]
Dquery_result_serializer_unittest.cc73 using BatchProto = protos::pbzero::QueryResult::CellsBatch; typedef
147 case BatchProto::CELL_INVALID: in DeserializeBuffer()
149 case BatchProto::CELL_NULL: in DeserializeBuffer()
152 case BatchProto::CELL_VARINT: in DeserializeBuffer()
157 case BatchProto::CELL_FLOAT64: in DeserializeBuffer()
162 case BatchProto::CELL_STRING: { in DeserializeBuffer()
172 case BatchProto::CELL_BLOB: { in DeserializeBuffer()