Home
last modified time | relevance | path

Searched refs:metricResult (Results 1 – 4 of 4) sorted by relevance

/external/perfetto/ui/src/frontend/
Dmetrics_page.ts30 const metricResult = globals.metricResult; constant
31 if (metricResult === undefined) return undefined;
33 if (!(metricResult && metricResult.name === currSelection)) {
36 if (metricResult.error !== undefined) {
37 return m('pre.metric-error', metricResult.error);
39 if (metricResult.resultString !== undefined) {
40 return m('pre', metricResult.resultString);
Dindex.ts248 publishMetricResult(metricResult: MetricResult) {
249 globals.setMetricResult(metricResult);
Dglobals.ts334 get metricResult() {
/external/perfetto/ui/src/controller/
Dmetrics_controller.ts56 const metricResult = await this.engine.computeMetric([name]); constant
59 {name, resultString: metricResult.metricsAsPrototext});