Home
last modified time | relevance | path

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

/test/vti/dashboard/src/test/java/com/android/vts/job/
DVtsProfilingStatsJobServletTest.java276 ProfilingPointSummaryEntity pps = ProfilingPointSummaryEntity.fromEntity(e); in testNewSummary() local
277 assertNotNull(pps); in testNewSummary()
279 pps.getBranch().equals(device.getBranch()) in testNewSummary()
280 || pps.getBranch().equals(ProfilingPointSummaryEntity.ALL)); in testNewSummary()
282 pps.getBuildFlavor().equals(ProfilingPointSummaryEntity.ALL) in testNewSummary()
283 || pps.getBuildFlavor().equals(device.getBuildFlavor())); in testNewSummary()
284 assertEquals(expected.getCount(), pps.getGlobalStats().getCount()); in testNewSummary()
285 assertEquals(expected.getMax(), pps.getGlobalStats().getMax(), THRESHOLD); in testNewSummary()
286 assertEquals(expected.getMin(), pps.getGlobalStats().getMin(), THRESHOLD); in testNewSummary()
287 assertEquals(expected.getMean(), pps.getGlobalStats().getMean(), THRESHOLD); in testNewSummary()
[all …]
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowProfilingOverviewServlet.java160 ProfilingPointSummaryEntity pps = ProfilingPointSummaryEntity.fromEntity(e); in doGetHandler() local
161 if (pps == null) continue; in doGetHandler()
162 … plot.addSeriesData(Long.toString(pps.getStartTime()), pps.getSeries(), pps.getGlobalStats()); in doGetHandler()
163 timestamps.add(pps.getStartTime()); in doGetHandler()