Home
last modified time | relevance | path

Searched refs:parentKey (Results 1 – 9 of 9) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DDeviceInfoEntity.java63 private Key parentKey; field in DeviceInfoEntity
100 Key parentKey, in DeviceInfoEntity() argument
107 this.parentKey = parentKey; in DeviceInfoEntity()
212 Entity deviceEntity = new Entity(KIND, this.parentKey); in toEntity()
239 Key parentKey = e.getKey().getParent(); in fromEntity() local
251 parentKey, branch, product, buildFlavor, buildId, abiBitness, abiName); in fromEntity()
308 public DeviceInfoEntity copyWithParent(com.googlecode.objectify.Key parentKey) { in copyWithParent() argument
309 return new DeviceInfoEntity(parentKey, this.branch, this.product, this.buildFlavor, in copyWithParent()
DCoverageEntity.java65 @Ignore @Getter @Setter private Key parentKey; field in CoverageEntity
101 Key parentKey, in CoverageEntity() argument
109 this.parentKey = parentKey; in CoverageEntity()
213 Entity coverageEntity = new Entity(KIND, parentKey); in toEntity()
282 com.googlecode.objectify.Key parentKey, String group, CoverageReportMessage coverage) { in fromCoverageReport() argument
303 parentKey, in fromCoverageReport()
DProfilingPointSummaryEntity.java148 Key parentKey, in ProfilingPointSummaryEntity() argument
163 this.key = createKey(parentKey, this.branch, this.buildFlavor, this.series, this.startTime); in ProfilingPointSummaryEntity()
176 Key parentKey, String branch, String buildFlavor, String series, long startTime) { in ProfilingPointSummaryEntity() argument
178 parentKey, in ProfilingPointSummaryEntity()
199 Key parentKey, String branch, String buildFlavor, String series, long startTime) { in createKey() argument
208 return KeyFactory.createKey(parentKey, KIND, sb.toString()); in createKey()
307 Key parentKey = e.getParent(); in fromEntity() local
357 parentKey, in fromEntity()
DProfilingPointRunEntity.java113 Key parentKey, in ProfilingPointRunEntity() argument
122 this.key = KeyFactory.createKey(parentKey, KIND, name); in ProfilingPointRunEntity()
270 Key parentKey = e.getParent(); in fromEntity() local
286 parentKey, name, type, regressionMode, labels, values, xLabel, yLabel, options); in fromEntity()
DTestRunEntity.java189 Key parentKey, in TestRunEntity() argument
201 this.key = KeyFactory.createKey(parentKey, KIND, startTimestamp); in TestRunEntity()
210 this.testName = parentKey.getName(); in TestRunEntity()
257 Key parentKey = KeyFactory.createKey(TestEntity.KIND, testName); in getKey() local
258 return KeyFactory.createKey(parentKey, KIND, startTimestamp); in getKey()
DTestPlanRunEntity.java234 public Key getOldKey(Key parentKey) { in getOldKey() argument
235 return KeyFactory.createKey(parentKey, KIND, startTimestamp); in getOldKey()
/test/vti/dashboard/src/main/java/com/android/vts/util/
DDatastoreHelper.java108 public static boolean hasNewer(Key parentKey, String kind, Long lowerBound) { in hasNewer() argument
113 Key startKey = KeyFactory.createKey(parentKey, kind, lowerBound); in hasNewer()
117 Query q = new Query(kind).setAncestor(parentKey).setFilter(startFilter).setKeysOnly(); in hasNewer()
129 public static boolean hasOlder(Key parentKey, String kind, Long upperBound) { in hasOlder() argument
133 Key endKey = KeyFactory.createKey(parentKey, kind, upperBound); in hasOlder()
136 Query q = new Query(kind).setAncestor(parentKey).setFilter(endFilter).setKeysOnly(); in hasOlder()
/test/vti/dashboard/src/main/java/com/android/vts/servlet/
DShowGraphServlet.java153 Key parentKey = KeyFactory.createKey(TestEntity.KIND, testName); in doGetHandler() local
155 FilterUtil.getTimeFilter(parentKey, TestRunEntity.KIND, startTime, endTime); in doGetHandler()
158 .setAncestor(parentKey) in doGetHandler()
179 FilterUtil.getDeviceTimeFilter(parentKey, TestRunEntity.KIND, startTime, endTime); in doGetHandler()
191 .setAncestor(parentKey) in doGetHandler()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestDataForDevServlet.java576 Key parentKey = KeyFactory.createKey(TestEntity.KIND, test); in doPost()
578 KeyFactory.createKey(parentKey, TestRunEntity.KIND, time); in doPost()