/external/perfetto/src/trace_processor/rpc/ |
D | query_result_serializer.h | 31 class QueryResult; variable 66 bool Serialize(protos::pbzero::QueryResult*); 78 void SerializeColumnNames(protos::pbzero::QueryResult*); 79 void SerializeBatch(protos::pbzero::QueryResult*); 80 void MaybeSerializeError(protos::pbzero::QueryResult*);
|
D | query_result_serializer.cc | 34 using BatchProto = protos::pbzero::QueryResult::CellsBatch; 35 using ResultProto = protos::pbzero::QueryResult; 55 protozero::HeapBuffered<protos::pbzero::QueryResult> result(slice, slice); in Serialize() 62 bool QueryResultSerializer::Serialize(protos::pbzero::QueryResult* res) { in Serialize() 79 void QueryResultSerializer::SerializeBatch(protos::pbzero::QueryResult* res) { in SerializeBatch() 250 protos::pbzero::QueryResult* res) { in MaybeSerializeError() 262 protos::pbzero::QueryResult* res) { in SerializeColumnNames()
|
D | query_result_serializer_unittest.cc | 73 using BatchProto = protos::pbzero::QueryResult::CellsBatch; 74 using ResultProto = protos::pbzero::QueryResult;
|
D | rpc.cc | 100 protozero::HeapBuffered<protos::pbzero::QueryResult> result; in Query()
|
/external/perfetto/ui/src/common/ |
D | query_iterator.ts | 23 type QueryResult = RawQueryResult|{someOtherEncoding: string}; alias 188 function isColumnarQueryResult(result: QueryResult): result is RawQueryResult { 192 export function iterUntyped(result: QueryResult): RowIterator<Row> { 201 spec: T, result: QueryResult): RowIterator<T> { 209 export function slowlyCountRows(result: QueryResult): number { 219 export function singleRow<T extends Row>(spec: T, result: QueryResult): T| 234 export function singleRowUntyped(result: QueryResult): Row|undefined {
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | QueryVk.cpp | 228 angle::Result QueryVk::accumulateStashedQueryResult(ContextVk *contextVk, vk::QueryResult *result) in accumulateStashedQueryResult() 232 vk::QueryResult v(getQueryResultCount(contextVk)); in accumulateStashedQueryResult() 556 vk::QueryResult result(getQueryResultCount(contextVk)); in getResult() 583 mCachedResult = !!result.getResult(vk::QueryResult::kDefaultResultIndex); in getResult() 587 result.getResult(vk::QueryResult::kDefaultResultIndex) * timestampPeriod); in getResult() 591 vk::QueryResult timeElapsedBegin(1); in getResult() 597 uint64_t delta = result.getResult(vk::QueryResult::kDefaultResultIndex) - in getResult() 598 timeElapsedBegin.getResult(vk::QueryResult::kDefaultResultIndex); in getResult() 605 ? vk::QueryResult::kTransformFeedbackPrimitivesWrittenIndex in getResult() 606 : vk::QueryResult::kDefaultResultIndex); in getResult() [all …]
|
D | QueryVk.h | 57 angle::Result accumulateStashedQueryResult(ContextVk *contextVk, vk::QueryResult *result);
|
D | vk_helpers.h | 430 class QueryResult final 433 QueryResult(uint32_t intsPerResult) : mIntsPerResult(intsPerResult), mResults{} {} in QueryResult() function 435 void operator+=(const QueryResult &rhs) 501 QueryResult *resultOut, 503 angle::Result getUint64Result(ContextVk *contextVk, QueryResult *resultOut); 521 QueryResult *resultOut);
|
D | ContextVk.cpp | 2360 vk::QueryResult gpuTimestampCycles(1); in synchronizeCpuGpuTime() 2367 gpuTimestampCycles.getResult(vk::QueryResult::kDefaultResultIndex); in synchronizeCpuGpuTime() 2376 TgpuCycles = gpuTimestampCycles.getResult(vk::QueryResult::kDefaultResultIndex); in synchronizeCpuGpuTime() 2433 vk::QueryResult gpuTimestampCycles(1); in checkCompletedGpuEvents() 2446 gpuTimestampCycles.getResult(vk::QueryResult::kDefaultResultIndex); in checkCompletedGpuEvents() 5442 vk::QueryResult result(1); in getTimestamp() 5444 *timestampOut = result.getResult(vk::QueryResult::kDefaultResultIndex); in getTimestamp()
|
D | vk_helpers.cpp | 2743 void QueryResult::setResults(uint64_t *results, uint32_t queryCount) in setResults() 2920 QueryResult *resultOut, in getUint64ResultNonBlocking() 2952 angle::Result QueryHelper::getUint64Result(ContextVk *contextVk, QueryResult *resultOut) in getUint64Result() 2969 QueryResult *resultOut) in getResultImpl()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | CFLSteensAliasAnalysis.h | 86 AliasResult QueryResult = query(LocA, LocB); in alias() local 87 if (QueryResult == MayAlias) in alias() 90 return QueryResult; in alias()
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | CFLSteensAliasAnalysis.h | 86 AliasResult QueryResult = query(LocA, LocB); in alias() local 87 if (QueryResult == MayAlias) in alias() 90 return QueryResult; in alias()
|
/external/perfetto/src/protozero/filtering/ |
D | filter_bytecode_parser.h | 46 struct QueryResult { struct 67 QueryResult Query(uint32_t msg_index, uint32_t field_id); argument
|
D | filter_bytecode_parser.cc | 189 FilterBytecodeParser::QueryResult FilterBytecodeParser::Query( in Query() 192 FilterBytecodeParser::QueryResult res{false, 0u}; in Query()
|
/external/llvm/include/llvm/Analysis/ |
D | CFLSteensAliasAnalysis.h | 77 AliasResult QueryResult = query(LocA, LocB); in alias() local 78 if (QueryResult == MayAlias) in alias() 81 return QueryResult; in alias()
|
/external/perfetto/src/trace_processor/python/perfetto/trace_processor/ |
D | protos.py | 56 self.QueryResult = create_message_factory('perfetto.protos.QueryResult')
|
D | http.py | 33 result = self.protos.QueryResult()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceBrowserCompileServer.cpp | 46 size_t QueryResult = in getIRTInterfaces() local 49 if (QueryResult != sizeof(gIRTFuncs)) in getIRTInterfaces()
|
/external/perfetto/protos/perfetto/trace_processor/ |
D | trace_processor.proto | 47 // DEPRECATED, use /query. See QueryResult below. 87 message QueryResult { message
|
/external/llvm-project/llvm/lib/Analysis/ |
D | CFLAndersAliasAnalysis.cpp | 893 AliasResult QueryResult = query(LocA, LocB); in alias() local 894 if (QueryResult == MayAlias) in alias() 897 return QueryResult; in alias()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | CFLAndersAliasAnalysis.cpp | 894 AliasResult QueryResult = query(LocA, LocB); in alias() local 895 if (QueryResult == MayAlias) in alias() 898 return QueryResult; in alias()
|
/external/perfetto/docs/analysis/ |
D | trace-processor.md | 639 * `execute_query()` - Takes in an SQL query and returns a `QueryResult` Protobuf
|