/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | ProfilingPointRunEntity.java | 48 public class ProfilingPointRunEntity implements DashboardEntity { class 112 public ProfilingPointRunEntity( in ProfilingPointRunEntity() method in ProfilingPointRunEntity 148 public ProfilingPointRunEntity( in ProfilingPointRunEntity() method in ProfilingPointRunEntity 193 public com.googlecode.objectify.Key<ProfilingPointRunEntity> saveMultiRow() { in saveMultiRow() 205 com.googlecode.objectify.Key<ProfilingPointRunEntity> profilingPointRunEntityKey = null; in saveMultiRow() 230 public com.googlecode.objectify.Key<ProfilingPointRunEntity> save() { in save() 258 public static ProfilingPointRunEntity fromEntity(Entity e) { in fromEntity() 285 return new ProfilingPointRunEntity( in fromEntity() 301 public static ProfilingPointRunEntity fromProfilingReport( in fromProfilingReport() 357 return new ProfilingPointRunEntity( in fromProfilingReport()
|
D | ProfilingPointSummaryEntity.java | 216 public void update(ProfilingPointRunEntity profilingRun) { in update()
|
/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | LineGraph.java | 19 import com.android.vts.entity.ProfilingPointRunEntity; 31 private List<ProfilingPointRunEntity> profilingRuns; 101 public void addData(String id, ProfilingPointRunEntity profilingPoint) { in addData() 120 ProfilingPointRunEntity profilingRun = profilingRuns.get(profilingRuns.size() - 1); in toJson() 132 ProfilingPointRunEntity pt = profilingRuns.get(reportIndex); in toJson()
|
D | Graph.java | 19 import com.android.vts.entity.ProfilingPointRunEntity; 75 public abstract void addData(String id, ProfilingPointRunEntity profilingPoint); in addData()
|
D | Histogram.java | 19 import com.android.vts.entity.ProfilingPointRunEntity; 125 public void addData(String id, ProfilingPointRunEntity profilingPoint) { in addData()
|
D | BoxPlot.java | 19 import com.android.vts.entity.ProfilingPointRunEntity; 118 public void addData(String label, ProfilingPointRunEntity profilingPoint) { in addData()
|
D | PerformanceUtil.java | 17 import com.android.vts.entity.ProfilingPointRunEntity; 271 ProfilingPointRunEntity profilingRun, Set<String> optionKeys) { in getOptionAlias()
|
D | FilterUtil.java | 17 import com.android.vts.entity.ProfilingPointRunEntity; 317 minRunKey, ProfilingPointRunEntity.KIND, String.valueOf((char) 0x0)); in getProfilingTimeFilter() 329 maxRunKey, ProfilingPointRunEntity.KIND, String.valueOf((char) 0xff)); in getProfilingTimeFilter()
|
D | TestResults.java | 21 import com.android.vts.entity.ProfilingPointRunEntity; 174 new Query(ProfilingPointRunEntity.KIND) in processProfilingPoints()
|
D | DatastoreHelper.java | 23 import com.android.vts.entity.ProfilingPointRunEntity;
|
/test/vti/dashboard/src/test/java/com/android/vts/job/ |
D | VtsProfilingStatsJobServletTest.java | 26 import com.android.vts.entity.ProfilingPointRunEntity; 106 ProfilingPointRunEntity profilingPointRunEntity = in createProfilingRun() 107 new ProfilingPointRunEntity( in createProfilingRun() 230 ProfilingPointRunEntity profilingPointRunEntity = in testNewSummary() 231 new ProfilingPointRunEntity( in testNewSummary() 305 ProfilingPointRunEntity profilingPointRunEntity = in testUpdateSummary() 306 new ProfilingPointRunEntity( in testUpdateSummary()
|
/test/vti/dashboard/src/main/java/com/android/vts/servlet/ |
D | ShowGraphServlet.java | 20 import com.android.vts.entity.ProfilingPointRunEntity; 93 ProfilingPointRunEntity pt = ProfilingPointRunEntity.fromEntity(profilingRun); in processProfilingRun() 170 testRun.getKey(), ProfilingPointRunEntity.KIND, profilingPointName)); in doGetHandler()
|
D | ShowTreeServlet.java | 20 import com.android.vts.entity.ProfilingPointRunEntity; 246 new Query(ProfilingPointRunEntity.KIND) in doGetHandler()
|
/test/vti/dashboard/src/main/java/com/android/vts/job/ |
D | VtsProfilingStatsJobServlet.java | 21 import com.android.vts.entity.ProfilingPointRunEntity; 113 ProfilingPointRunEntity profilingPointRun, in updateSummaries() 231 ProfilingPointRunEntity profilingPointRun = null; in doPost() 234 profilingPointRun = ProfilingPointRunEntity.fromEntity(profilingPointRunEntity); in doPost()
|
/test/vti/dashboard/src/main/java/com/android/vts/api/ |
D | DatastoreRestServlet.java | 27 import com.android.vts.entity.ProfilingPointRunEntity; 154 List<ProfilingPointRunEntity> profilingPointRunEntityList = new ArrayList<>(); in insertTestReport() 227 ProfilingPointRunEntity profilingPointRunEntity = in insertTestReport() 228 ProfilingPointRunEntity.fromProfilingReport(testRunKey, profiling); in insertTestReport() 326 ProfilingPointRunEntity profilingPointRunEntity = in insertTestReport() 327 ProfilingPointRunEntity.fromProfilingReport(testRunKey, profiling); in insertTestReport()
|
D | TestDataForDevServlet.java | 24 import com.android.vts.entity.ProfilingPointRunEntity; 446 ProfilingPointRunEntity profilingEntity = in doPost() 447 new ProfilingPointRunEntity( in doPost()
|
/test/vti/dashboard/src/main/java/com/android/vts/config/ |
D | ObjectifyListener.java | 28 import com.android.vts.entity.ProfilingPointRunEntity; 101 ObjectifyService.register(ProfilingPointRunEntity.class); in contextInitialized()
|