Home
last modified time | relevance | path

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

/external/setupcompat/main/java/com/google/android/setupcompat/logging/
DCustomEvent.java88 bundle.putLong(BUNDLE_KEY_TIMESTAMP, customEvent.timestampMillis()); in toBundle()
114 public long timestampMillis() { in timestampMillis() method in CustomEvent
115 return timestampMillis; in timestampMillis()
143 parcel.writeLong(timestampMillis); in writeToParcel()
158 return timestampMillis == that.timestampMillis in equals()
166 return ObjectUtils.hashCode(timestampMillis, metricKey, persistableBundle, piiValues); in hashCode()
170 long timestampMillis, in CustomEvent() argument
174 Preconditions.checkArgument(timestampMillis >= 0, "Timestamp cannot be negative."); in CustomEvent()
180 this.timestampMillis = timestampMillis; in CustomEvent()
186 private final long timestampMillis; field in CustomEvent