Home
last modified time | relevance | path

Searched refs:pathInfo (Results 1 – 6 of 6) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/api/
DDataRestServlet.java40 String pathInfo = request.getPathInfo(); in doGet() local
42 if (Objects.nonNull(pathInfo)) { in doGet()
47 if (pathInfo.equalsIgnoreCase("/branch")) { in doGet()
49 } else if (pathInfo.equalsIgnoreCase("/device")) { in doGet()
51 } else if (pathInfo.startsWith("/code/coverage/status/")) { in doGet()
54 if (pathInfo.endsWith("branch")) { in doGet()
69 logger.log(Level.INFO, "Path Info => " + pathInfo); in doGet()
DCoverageRestServlet.java48 String pathInfo = request.getPathInfo(); in doGet() local
50 if (Objects.nonNull(pathInfo)) { in doGet()
51 if (pathInfo.equalsIgnoreCase("/api/data")) { in doGet()
56 logger.log(Level.INFO, "Path Info => " + pathInfo); in doGet()
79 String pathInfo = request.getPathInfo(); in doPost() local
81 if (Objects.nonNull(pathInfo)) { in doPost()
82 if (pathInfo.equalsIgnoreCase("/api/data")) { in doPost()
88 } else if (pathInfo.equalsIgnoreCase("/api/sum")) { in doPost()
DTestDataForDevServlet.java267 Path pathInfo = in generateSuiteTestData()
276 pathInfo in generateSuiteTestData()
314 pathInfo in generateSuiteTestData()
355 String pathInfo = requestUri.replace("/api/test_data/", ""); in doGet() local
356 switch (pathInfo) { in doGet()
383 String pathInfo = request.getPathInfo(); in doPost() local
384 String[] pathParts = pathInfo.split("/"); in doPost()
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestSuiteFileEntity.java63 Path pathInfo = Paths.get(filePath); in TestSuiteFileEntity() local
64 if (pathInfo.getNameCount() > 3) { in TestSuiteFileEntity()
65 this.year = Integer.valueOf(pathInfo.getName(1).toString()); in TestSuiteFileEntity()
66 this.month = Integer.valueOf(pathInfo.getName(2).toString()); in TestSuiteFileEntity()
67 this.day = Integer.valueOf(pathInfo.getName(3).toString()); in TestSuiteFileEntity()
68 this.fileName = pathInfo.getFileName().toString(); in TestSuiteFileEntity()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowGcsLogServlet.java156 String pathInfo = request.getPathInfo(); in doGetHandler() local
157 if (Objects.nonNull(pathInfo)) { in doGetHandler()
158 if (pathInfo.equalsIgnoreCase("/download")) { in doGetHandler()
161 logger.log(Level.INFO, "Path Info => " + pathInfo); in doGetHandler()
204 Path pathInfo = Paths.get(path); in defaultHandler() local
212 if (pathInfo.toString().endsWith(".zip")) { in defaultHandler()
254 "attachment; filename=\"" + pathInfo.getFileName() + "\""); in defaultHandler()
261 logger.log(Level.INFO, "path info => " + pathInfo); in defaultHandler()
262 logger.log(Level.INFO, "path name count => " + pathInfo.getNameCount()); in defaultHandler()
265 if (pathInfo.getNameCount() == 0) { in defaultHandler()
[all …]
/test/vti/dashboard/src/main/java/com/android/vts/job/
DVtsSuiteTestJobServlet.java143 Path pathInfo = Paths.get(String.join(fileSeparator, pathList)); in doGet() local
163 Storage.BlobListOption.prefix(pathInfo.toString() + fileSeparator) in doGet()