Home
last modified time | relevance | path

Searched refs:links (Results 1 – 16 of 16) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DBaseServlet.java123 List<Page> links = new ArrayList<>();
124 links.add(new Page(PageType.TOT)); in links.add()
125 links.add(new Page(PageType.RELEASE)); in links.add()
126 links.add(new Page(PageType.COVERAGE_OVERVIEW)); in links.add()
127 links.add(new Page(PageType.PROFILING_LIST)); in links.add()
128 navbarLinks = links;
DShowCoverageServlet.java62 List<Page> links = new ArrayList<>(); in getBreadcrumbLinks() local
64 links.add(new Page(PageType.TABLE, testName, "?testName=" + testName)); in getBreadcrumbLinks()
67 links.add(new Page(PageType.COVERAGE, "?testName=" + testName + "&startTime=" + startTime)); in getBreadcrumbLinks()
68 return links; in getBreadcrumbLinks()
DShowPerformanceDigestServlet.java65 List<Page> links = new ArrayList<>(); in getBreadcrumbLinks() local
67 links.add(new Page(PageType.TABLE, testName, "?testName=" + testName)); in getBreadcrumbLinks()
68 links.add(new Page(PageType.PERFORMANCE_DIGEST, "?testName=" + testName)); in getBreadcrumbLinks()
69 return links; in getBreadcrumbLinks()
DShowPlanRunServlet.java55 List<Page> links = new ArrayList<>(); in getBreadcrumbLinks() local
57 links.add(new Page(PageType.PLAN_RELEASE, planName, "?plan=" + planName)); in getBreadcrumbLinks()
60 links.add(new Page(PageType.PLAN_RUN, "?plan=" + planName + "&time=" + time)); in getBreadcrumbLinks()
61 return links; in getBreadcrumbLinks()
DShowPlanReleaseServlet.java76 List<Page> links = new ArrayList<>(); in getBreadcrumbLinks() local
79 links.add(new Page(PageType.RELEASE, "TEST PLANS", "?type=" + testType, true)); in getBreadcrumbLinks()
80 links.add(new Page(PageType.PLAN_RELEASE, planName, "?plan=" + planName)); in getBreadcrumbLinks()
82 links.add(new Page(PageType.RELEASE, "TEST SUITES", "?type=" + testType, true)); in getBreadcrumbLinks()
83 links.add( in getBreadcrumbLinks()
89 return links; in getBreadcrumbLinks()
DShowGraphServlet.java72 List<Page> links = new ArrayList<>(); in getBreadcrumbLinks() local
74 links.add(new Page(PageType.TABLE, testName, "?testName=" + testName)); in getBreadcrumbLinks()
77 links.add( in getBreadcrumbLinks()
81 return links; in getBreadcrumbLinks()
DShowTestAcknowledgmentServlet.java48 List<Page> links = new ArrayList<>(); in getBreadcrumbLinks() local
49 return links; in getBreadcrumbLinks()
DShowProfilingOverviewServlet.java59 List<Page> links = new ArrayList<>(); in getBreadcrumbLinks() local
61 links.add(new Page(PageType.PROFILING_OVERVIEW, testName, "?testName=" + testName)); in getBreadcrumbLinks()
62 return links; in getBreadcrumbLinks()
DShowTableServlet.java60 List<Page> links = new ArrayList<>(); in getBreadcrumbLinks() local
62 links.add(new Page(PageType.TABLE, testName, "?testName=" + testName)); in getBreadcrumbLinks()
63 return links; in getBreadcrumbLinks()
DShowTreeServlet.java72 List<Page> links = new ArrayList<>(); in getBreadcrumbLinks() local
74 links.add(new Page(PageType.TREE, testName, "?testName=" + testName)); in getBreadcrumbLinks()
75 return links; in getBreadcrumbLinks()
DShowGreenReleaseServlet.java170 List<Page> links = new ArrayList<>(); in getBreadcrumbLinks() local
172 links.add(new Page(PageType.PLAN_RELEASE, planName, "?plan=" + planName)); in getBreadcrumbLinks()
173 return links; in getBreadcrumbLinks()
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestRunEntity.java374 List<String> links = new ArrayList<>(); in fromEntity() local
376 links = (List<String>) e.getProperty(LOG_LINKS); in fromEntity()
389 links); in fromEntity()
400 List<JsonElement> links = new ArrayList<>(); in getJsonLogLinks() local
409 links.add(new Gson().toJsonTree(logInfo)); in getJsonLogLinks()
412 return new Gson().toJsonTree(links); in getJsonLogLinks()
481 List<JsonElement> links = new ArrayList<>(); in toJson() local
489 links.add(new Gson().toJsonTree(logInfo)); in toJson()
491 if (links.size() > 0) { in toJson()
492 json.add(this.LOG_LINKS, new Gson().toJsonTree(links)); in toJson()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestDataForDevServlet.java142 private List<String> links; field in TestDataForDevServlet.TestReportDataObject.Test.TestRun
518 testRun.links); in doPost()
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_coverage_overview.jsp226 var logLinks = header.data('links');
424 …}" />" data-time="<c:out value="${testRunEntity.startTimestamp}" />" data-links='${testRunEntity.j…
Dshow_table.jsp76 // Actives the log links to display the log info modal when clicked.
/test/vts/proto/
DVtsReportMessage.proto322 // URL links for the test run.