Searched defs:timestamp (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/security/
H A DCodeSigner.java32 private Timestamp timestamp; field in class:CodeSigner
42 * @param timestamp
48 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) { argument
53 this.timestamp = timestamp;
78 return timestamp == null ? that.timestamp == null : timestamp
79 .equals(that.timestamp);
100 return timestamp;
[all...]
H A DTimestamp.java32 private Date timestamp; field in class:Timestamp
41 * timestamp} and the given certificate path.
43 * @param timestamp
48 * if {@code timestamp} is {@code null} or if {@code
51 public Timestamp(Date timestamp, CertPath signerCertPath) { argument
52 if (timestamp == null) {
53 throw new NullPointerException("timestamp == null");
58 // Clone timestamp to prevent modifications
59 this.timestamp = new Date(timestamp
[all...]
/libcore/luni/src/main/java/java/util/
H A DUUID.java52 private transient long timestamp; field in class:UUID
102 // setup timestamp field
106 timestamp = timeLow | timeMid | timeHigh;
272 * The timestamp value of the version 1, variant 2 UUID as per <a
279 public long timestamp() { method in class:UUID
283 return timestamp;

Completed in 292 milliseconds