Home
last modified time | relevance | path

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

/test/vti/dashboard/src/test/java/com/android/vts/job/
DVtsProfilingStatsJobServletTest.java106 ProfilingPointRunEntity profilingPointRunEntity = in createProfilingRun() local
230 ProfilingPointRunEntity profilingPointRunEntity = in testNewSummary() local
252 testKey, profilingPointRunEntity, devices, time); in testNewSummary()
258 … Key profilingPointKey = ProfilingPointEntity.createKey(test, profilingPointRunEntity.getName()); in testNewSummary()
267 … assertEquals(profilingPointRunEntity.getName(), profilingPointEntity.getProfilingPointName()); in testNewSummary()
268 assertEquals(profilingPointRunEntity.getXLabel(), profilingPointEntity.getXLabel()); in testNewSummary()
269 assertEquals(profilingPointRunEntity.getYLabel(), profilingPointEntity.getYLabel()); in testNewSummary()
270 assertEquals(profilingPointRunEntity.getType(), profilingPointEntity.getType()); in testNewSummary()
271 …assertEquals(profilingPointRunEntity.getRegressionMode(), profilingPointEntity.getRegressionMode()… in testNewSummary()
305 ProfilingPointRunEntity profilingPointRunEntity = in testUpdateSummary() local
[all …]
/test/vti/dashboard/src/main/java/com/android/vts/api/
DDatastoreRestServlet.java227 ProfilingPointRunEntity profilingPointRunEntity = in insertTestReport() local
229 if (profilingPointRunEntity == null) { in insertTestReport()
232 profilingPointRunEntityList.add(profilingPointRunEntity); in insertTestReport()
233 profilingPointKeyList.add(profilingPointRunEntity.getKey()); in insertTestReport()
326 ProfilingPointRunEntity profilingPointRunEntity = in insertTestReport() local
328 if (profilingPointRunEntity == null) { in insertTestReport()
331 profilingPointRunEntityList.add(profilingPointRunEntity); in insertTestReport()
332 profilingPointKeyList.add(profilingPointRunEntity.getKey()); in insertTestReport()
/test/vti/dashboard/src/main/java/com/android/vts/job/
DVtsProfilingStatsJobServlet.java233 Entity profilingPointRunEntity = datastore.get(profilingPointRunKey); in doPost() local
234 profilingPointRun = ProfilingPointRunEntity.fromEntity(profilingPointRunEntity); in doPost()