Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/util/
DTestResults.java52 private Map<Key, List<DeviceInfoEntity>> deviceInfoMap; // map from test run key to device info field in TestResults
99 this.deviceInfoMap = new HashMap<>(); in TestResults()
144 List<DeviceInfoEntity> deviceInfos = deviceInfoMap.get(mostRecentRun.getKey()); in generateToTBreakdown()
212 if (!deviceInfoMap.containsKey(device.getParent())) { in processDeviceInfos()
213 deviceInfoMap.put(device.getParent(), new ArrayList<DeviceInfoEntity>()); in processDeviceInfos()
215 deviceInfoMap.get(device.getParent()).add(deviceEntity); in processDeviceInfos()
258 List<DeviceInfoEntity> devices = deviceInfoMap.get(testRun.getKey()); in processReport()