Home
last modified time | relevance | path

Searched refs:currentMetrics (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/device/metric/
DFilePullerDeviceMetricCollectorTest.java91 HashMap<String, Metric> currentMetrics = new HashMap<>(); in testPullMatchingKey() local
92 currentMetrics.put("coverageFile", TfMetricProtoUtil.stringToMetric("/data/coverage")); in testPullMatchingKey()
98 mFilePuller.testRunEnded(500, currentMetrics); in testPullMatchingKey()
113 HashMap<String, Metric> currentMetrics = new HashMap<>(); in testPullMatchingKeyPattern() local
114 currentMetrics.put("coverageFile", TfMetricProtoUtil.stringToMetric("/data/coverage")); in testPullMatchingKeyPattern()
120 mFilePuller.testRunEnded(500, currentMetrics); in testPullMatchingKeyPattern()
132 HashMap<String, Metric> currentMetrics = new HashMap<>(); in testPatternNotMatching() local
133 currentMetrics.put("coverageFile", TfMetricProtoUtil.stringToMetric("/data/coverage")); in testPatternNotMatching()
136 mFilePuller.testRunEnded(500, currentMetrics); in testPatternNotMatching()
152 HashMap<String, Metric> currentMetrics = new HashMap<>(); in testPullMatchingDirectory() local
[all …]
DAtraceRunMetricCollectorTest.java86 HashMap<String, Metric> currentMetrics = new HashMap<>(); in testPullMatchingDirectoryKey() local
87 currentMetrics.put("srcdirectory", TfMetricProtoUtil.stringToMetric("sdcard/srcdirectory")); in testPullMatchingDirectoryKey()
/tools/tradefederation/core/src/com/android/tradefed/device/metric/
DFilePullerDeviceMetricCollector.java91 private void processMetricRequest(DeviceMetricData data, Map<String, String> currentMetrics) { in processMetricRequest() argument
96 Entry<String, File> pulledMetrics = pullMetricFile(key, currentMetrics); in processMetricRequest()