Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowProfilingOverviewServlet.java128 List<ProfilingPointEntity> profilingPoints = new ArrayList<>(); in doGetHandler() local
135 profilingPoints.add(pp); in doGetHandler()
139 for (ProfilingPointEntity pp : profilingPoints) { in doGetHandler()
152 for (ProfilingPointEntity pp : profilingPoints) { in doGetHandler()
DShowTreeServlet.java244 Set<String> profilingPoints = new HashSet<>(); in doGetHandler() local
251 profilingPoints.add(e.getKey().getName()); in doGetHandler()
254 if (profilingPoints.size() == 0) { in doGetHandler()
257 profilingPointNames.addAll(profilingPoints); in doGetHandler()
DShowGraphServlet.java172 Map<Key, Entity> profilingPoints = datastore.get(gets); in doGetHandler() local
174 for (Key key : profilingPoints.keySet()) { in doGetHandler()
175 testRunProfiling.put(key.getParent(), profilingPoints.get(key)); in doGetHandler()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DPerformanceUtil.java159 List<ProfilingPointEntity> profilingPoints = new ArrayList<>(); in updatePerformanceSummary() local
166 profilingPoints.add(pp); in updatePerformanceSummary()
196 for (ProfilingPointEntity pp : profilingPoints) { in updatePerformanceSummary()
DTestResults.java178 Iterable<Entity> profilingPoints = datastore.prepare(profilingPointQuery).asIterable(); in processProfilingPoints() local
180 for (Entity e : profilingPoints) { in processProfilingPoints()