Home
last modified time | relevance | path

Searched refs:createKey (Results 1 – 25 of 31) sorted by relevance

12

/test/vti/dashboard/src/test/java/com/android/vts/job/
DVtsProfilingStatsJobServletTest.java94 Key testKey = KeyFactory.createKey(TestEntity.KIND, test); in createProfilingRun()
95 Key testRunKey = KeyFactory.createKey(testKey, TestRunEntity.KIND, time); in createProfilingRun()
140 Key key = KeyFactory.createKey(kind, testName); in testTasksScheduled()
218 Key testKey = KeyFactory.createKey(TestEntity.KIND, test); in testNewSummary()
219 Key testRunKey = KeyFactory.createKey(testKey, TestRunEntity.KIND, time); in testNewSummary()
258 … Key profilingPointKey = ProfilingPointEntity.createKey(test, profilingPointRunEntity.getName()); in testNewSummary()
299 Key testKey = KeyFactory.createKey(TestEntity.KIND, test); in testUpdateSummary()
300 Key testRunKey = KeyFactory.createKey(testKey, TestRunEntity.KIND, time); in testUpdateSummary()
328 … Key profilingPointKey = ProfilingPointEntity.createKey(test, profilingPointRunEntity.getName()); in testUpdateSummary()
363 ProfilingPointSummaryEntity.createKey( in testUpdateSummary()
DVtsAlertJobServletTest.java62 testKey = KeyFactory.createKey(TestAcknowledgmentEntity.KIND, "test"); in setUpExtra()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DFilterUtil.java314 Key minRunKey = KeyFactory.createKey(grandparentKey, parentKind, startTime); in getProfilingTimeFilter()
316 KeyFactory.createKey( in getProfilingTimeFilter()
326 Key maxRunKey = KeyFactory.createKey(grandparentKey, parentKind, endTime); in getProfilingTimeFilter()
328 KeyFactory.createKey( in getProfilingTimeFilter()
361 Key minRunKey = KeyFactory.createKey(grandparentKey, parentKind, startTime); in getDeviceTimeFilter()
362 Key startKey = KeyFactory.createKey(minRunKey, DeviceInfoEntity.KIND, 1); in getDeviceTimeFilter()
371 Key maxRunKey = KeyFactory.createKey(grandparentKey, parentKind, endTime); in getDeviceTimeFilter()
372 Key endKey = KeyFactory.createKey(maxRunKey, DeviceInfoEntity.KIND, Long.MAX_VALUE); in getDeviceTimeFilter()
406 Key startKey = KeyFactory.createKey(testKey, kind, startTime); in getTimeFilter()
415 Key endKey = KeyFactory.createKey(testKey, kind, endTime); in getTimeFilter()
DDatastoreHelper.java113 Key startKey = KeyFactory.createKey(parentKey, kind, lowerBound); in hasNewer()
133 Key endKey = KeyFactory.createKey(parentKey, kind, upperBound); in hasOlder()
DTestResults.java169 Key testKey = KeyFactory.createKey(TestEntity.KIND, this.testName); in processProfilingPoints()
190 Key testKey = KeyFactory.createKey(TestEntity.KIND, this.testName); in processDeviceInfos()
/test/vti/dashboard/src/test/java/com/android/vts/entity/
DTestAcknowledgmentEntityTest.java56 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testEntitySerialization()
96 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testEntitySerializationWithNulls()
123 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testJsonSerialization()
134 Entity e = new Entity(KeyFactory.createKey(TestAcknowledgmentEntity.KIND, "fakekey")); in testJsonSerialization()
151 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testJsonSerializationWithNulls()
155 Entity e = new Entity(KeyFactory.createKey(TestAcknowledgmentEntity.KIND, "fakekey")); in testJsonSerializationWithNulls()
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DCodeCoverageEntity.java122 KeyFactory.createKey(TestEntity.KIND, this.getParent().getParent().getName()); in toEntity()
124 KeyFactory.createKey(testKey, TestRunEntity.KIND, this.getParent().getId()); in toEntity()
126 KeyFactory.createKey(testRunKey, KIND, this.getParent().getId()); in toEntity()
DProfilingPointEntity.java105 this.key = createKey(testName, profilingPointName); in ProfilingPointEntity()
140 public static Key createKey(String testName, String profilingPointName) { in createKey() method in ProfilingPointEntity
141 return KeyFactory.createKey(KIND, testName + DELIMITER + profilingPointName); in createKey()
DProfilingPointSummaryEntity.java163 this.key = createKey(parentKey, this.branch, this.buildFlavor, this.series, this.startTime); in ProfilingPointSummaryEntity()
198 public static Key createKey( in createKey() method in ProfilingPointSummaryEntity
208 return KeyFactory.createKey(parentKey, KIND, sb.toString()); in createKey()
DTestRunEntity.java201 this.key = KeyFactory.createKey(parentKey, KIND, startTimestamp); in TestRunEntity()
257 Key parentKey = KeyFactory.createKey(TestEntity.KIND, testName); in getKey()
258 return KeyFactory.createKey(parentKey, KIND, startTimestamp); in getKey()
DTestPlanRunEntity.java126 this.key = KeyFactory.createKey(testPlanKey, KIND, startTimestamp); in TestPlanRunEntity()
235 return KeyFactory.createKey(parentKey, KIND, startTimestamp); in getOldKey()
DBranchEntity.java56 return KeyFactory.createKey(KIND, this.name); in getKey()
DBuildTargetEntity.java56 return KeyFactory.createKey(KIND, this.name); in getKey()
DTestEntity.java106 return KeyFactory.createKey(KIND, testName); in getOldKey()
DTestCaseRunEntity.java173 testCaseRunEntity = new Entity(KeyFactory.createKey(KIND, id)); in toEntity()
/test/vti/dashboard/src/main/java/com/android/vts/job/
DVtsAlertJobServlet.java86 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseRef.parentId)); in getCurrentFailures()
94 Key key = KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseRef.parentId); in getCurrentFailures()
257 testCaseKeys.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId)); in getTestStatus()
513 Key statusKey = KeyFactory.createKey(TestStatusEntity.KIND, testName); in doPost()
DVtsInactivityJobServlet.java162 Key testKey = KeyFactory.createKey(TestEntity.KIND, status.getTestName()); in doPost()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowPlanRunServlet.java93 Key planKey = KeyFactory.createKey(TestPlanEntity.KIND, plan); in doGetHandler()
94 Key planRunKey = KeyFactory.createKey(planKey, TestPlanRunEntity.KIND, time); in doGetHandler()
DShowTableServlet.java75 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId)); in processTestRun()
152 Key testKey = KeyFactory.createKey(TestEntity.KIND, testName); in doGetHandler()
DShowGraphServlet.java153 Key parentKey = KeyFactory.createKey(TestEntity.KIND, testName); in doGetHandler()
169 KeyFactory.createKey( in doGetHandler()
DShowTreeServlet.java89 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId)); in processTestDetails()
164 Key testKey = KeyFactory.createKey(TestEntity.KIND, testName); in doGetHandler()
DShowGreenReleaseServlet.java232 .setAncestor(KeyFactory.createKey(TestPlanEntity.KIND, testPlan)) in getTestPlanDispatcher()
278 KeyFactory.createKey(TestPlanEntity.KIND, testPlan); in getTestPlanDispatcher()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestDataForDevServlet.java402 KeyFactory.createKey( in doPost()
576 Key parentKey = KeyFactory.createKey(TestEntity.KIND, test); in doPost()
578 KeyFactory.createKey(parentKey, TestRunEntity.KIND, time); in doPost()
DUserFavoriteRestServlet.java66 Key addedTestKey = KeyFactory.createKey(TestEntity.KIND, test); in addFavorite()
/test/vti/dashboard/src/test/java/com/android/vts/util/
DProfilingPointSummaryTest.java65 ProfilingPointEntity.createKey("test", "pp"), in createProfilingReport()

12