Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DProfilingPointEntity.java64 private String profilingPointName; field in ProfilingPointEntity
100 String profilingPointName, in ProfilingPointEntity() argument
105 this.key = createKey(testName, profilingPointName); in ProfilingPointEntity()
107 this.profilingPointName = profilingPointName; in ProfilingPointEntity()
140 public static Key createKey(String testName, String profilingPointName) { in createKey() argument
141 return KeyFactory.createKey(KIND, testName + DELIMITER + profilingPointName); in createKey()
153 profilingPoint.setIndexedProperty(PROFILING_POINT_NAME, this.profilingPointName); in toEntity()
184 String profilingPointName = (String) e.getProperty(PROFILING_POINT_NAME); in fromEntity() local
191 testName, profilingPointName, type, regressionMode, xLabel, yLabel); in fromEntity()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DPerformanceSummary.java142 public boolean hasProfilingPoint(String profilingPointName) { in hasProfilingPoint() argument
143 return summaryMap.containsKey(profilingPointName); in hasProfilingPoint()
152 public ProfilingPointSummary getProfilingPointSummary(String profilingPointName) { in getProfilingPointSummary() argument
153 return summaryMap.get(profilingPointName); in getProfilingPointSummary()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowGraphServlet.java76 String profilingPointName = request.getParameter("profilingPoint"); in getBreadcrumbLinks() local
80 "?testName=" + testName + "&profilingPoint=" + profilingPointName)); in getBreadcrumbLinks()
131 String profilingPointName = request.getParameter("profilingPoint"); in doGetHandler() local
170 testRun.getKey(), ProfilingPointRunEntity.KIND, profilingPointName)); in doGetHandler() local
254 request.setAttribute("profilingPointName", profilingPointName); in doGetHandler()
DShowPerformanceDigestServlet.java227 for (String profilingPointName : profilingNames) { in doGetHandler()
229 todayPerformance.getProfilingPointSummary(profilingPointName); in doGetHandler()
232 profilingPointName, in doGetHandler()
238 tableTitles.add(profilingPointName); in doGetHandler()
/test/vti/dashboard/src/test/java/com/android/vts/job/
DVtsProfilingStatsJobServletTest.java86 String profilingPointName = "profilingPoint"; in createProfilingRun() local
109 profilingPointName, in createProfilingRun()
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_graph.jsp227 var link = ctx + '/show_graph?profilingPoint=${profilingPointName}' +
249 <h5 class='profiling-name truncate'>${profilingPointName}</h5>
Dshow_performance_digest.jsp36 var link = ctx + '/show_performance_digest?profilingPoint=${profilingPointName}' +