Home
last modified time | relevance | path

Searched refs:END_TIMESTAMP (Results 1 – 2 of 2) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DTestPlanRunEntity.java62 public static final String END_TIMESTAMP = "endTimestamp"; field in TestPlanRunEntity
194 planRun.setProperty(END_TIMESTAMP, this.endTimestamp); in toEntity()
257 || !e.hasProperty(END_TIMESTAMP) in fromEntity()
269 long endTimestamp = (long) e.getProperty(END_TIMESTAMP); in fromEntity()
307 json.add(END_TIMESTAMP, new JsonPrimitive(this.endTimestamp)); in toJson()
DTestRunEntity.java127 public static final String END_TIMESTAMP = "endTimestamp"; field in TestRunEntity
234 testRunEntity.setUnindexedProperty(END_TIMESTAMP, this.endTimestamp); in toEntity()
348 || !e.hasProperty(END_TIMESTAMP) in fromEntity()
359 long endTimestamp = (long) e.getProperty(END_TIMESTAMP); in fromEntity()
426 json.add(END_TIMESTAMP, new JsonPrimitive(this.endTimestamp)); in toJson()