Searched refs:timestamp (Results 1 - 25 of 82) sorted by relevance

1234

/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djava_sql_Timestamp.java39 Timestamp timestamp = new Timestamp(System.currentTimeMillis());
40 timestamp.setNanos(1 + timestamp.getNanos());
41 return timestamp;
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DSoftReference.java76 private long timestamp; field in class:SoftReference
86 this.timestamp = clock;
100 this.timestamp = clock;
113 if (o != null && this.timestamp != clock)
114 this.timestamp = clock;
/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSigner.java51 * The signature timestamp.
55 private Timestamp timestamp; field in class:CodeSigner
67 * @param timestamp A signature timestamp.
68 * If <code>null</code> then no timestamp was generated
73 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) { argument
78 this.timestamp = timestamp;
91 * Returns the signature timestamp.
93 * @return The timestamp o
[all...]
H A DTimestamp.java36 * This class encapsulates information about a signed timestamp.
38 * It includes the timestamp's date and time as well as information about the
39 * Timestamping Authority (TSA) which generated and signed the timestamp.
50 * The timestamp's date and time
54 private Date timestamp; field in class:Timestamp
64 * Hash code for this timestamp.
71 * @param timestamp is the timestamp's date and time. It must not be null.
73 * @throws NullPointerException if timestamp or signerCertPath is null.
75 public Timestamp(Date timestamp, CertPat argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DobjectCountEventSender.hpp35 static void send(const KlassInfoEntry* entry, GCId gc_id, jlong timestamp);
H A DgcTrace.cpp49 void GCTracer::report_gc_start_impl(GCCause::Cause cause, jlong timestamp) { argument
55 _shared_gc_info.set_start_timestamp(timestamp);
58 void GCTracer::report_gc_start(GCCause::Cause cause, jlong timestamp) { argument
61 report_gc_start_impl(cause, timestamp);
68 void GCTracer::report_gc_end_impl(jlong timestamp, TimePartitions* time_partitions) { argument
73 _shared_gc_info.set_end_timestamp(timestamp);
79 void GCTracer::report_gc_end(jlong timestamp, TimePartitions* time_partitions) { argument
82 report_gc_end_impl(timestamp, time_partitions);
103 ObjectCountEventSenderClosure(GCId gc_id, size_t total_size_in_words, jlong timestamp) : argument
107 _timestamp(timestamp)
157 jlong timestamp = os::elapsed_counter(); local
171 report_gc_end_impl(jlong timestamp, TimePartitions* time_partitions) argument
191 report_gc_end_impl(jlong timestamp, TimePartitions* time_partitions) argument
198 report_gc_end_impl(jlong timestamp, TimePartitions* time_partitions) argument
224 report_gc_end_impl(jlong timestamp, TimePartitions* time_partitions) argument
[all...]
H A DgcTrace.hpp70 void set_start_timestamp(jlong timestamp) { _start_timestamp = timestamp; } argument
73 void set_end_timestamp(jlong timestamp) { _end_timestamp = timestamp; } argument
118 void report_gc_start(GCCause::Cause cause, jlong timestamp);
119 void report_gc_end(jlong timestamp, TimePartitions* time_partitions);
128 virtual void report_gc_start_impl(GCCause::Cause cause, jlong timestamp);
129 virtual void report_gc_end_impl(jlong timestamp, TimePartitions* time_partitions);
146 virtual void report_gc_end_impl(jlong timestamp, TimePartitions* time_partitions);
160 virtual void report_gc_end_impl(jlong timestamp, TimePartition
[all...]
H A DobjectCountEventSender.cpp32 void ObjectCountEventSender::send(const KlassInfoEntry* entry, GCId gc_id, jlong timestamp) { argument
41 event.set_endtime(timestamp);
/openjdk7/jdk/src/share/classes/sun/security/timestamp/
H A DTimestamper.java26 package sun.security.timestamp;
44 * Connects to the TSA and requests a timestamp.
46 * @param tsQuery The timestamp query.
47 * @return The result of the timestamp query.
/openjdk7/jdk/src/share/classes/java/io/
H A DExpiringCache.java45 private long timestamp; field in class:ExpiringCache.Entry
48 Entry(long timestamp, String val) { argument
49 this.timestamp = timestamp;
53 long timestamp() { return timestamp; } method in class:ExpiringCache.Entry
54 void setTimestamp(long timestamp) { this.timestamp = timestamp; } argument
104 long delta = System.currentTimeMillis() - entry.timestamp();
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DServerCommunicatorAdmin.java42 timestamp = 0;
93 timestamp = System.currentTimeMillis();
94 logtime("Admin: Timestamp=",timestamp);
137 if (timestamp == 0) timestamp = System.currentTimeMillis();
139 logtime("Admin: Timestamp=",timestamp);
156 timeout - (System.currentTimeMillis() - timestamp);
174 System.currentTimeMillis() - timestamp;
216 private long timestamp; field in class:ServerCommunicatorAdmin
/openjdk7/jdk/src/solaris/sample/dtrace/hotspot/
H A Dgc_time_stat.d64 START_TIME = timestamp;
69 SAMPLING_TIME = timestamp + INTERVAL_SECS * 1000000000ull;
84 self->gc_ts = timestamp;
93 self->time = (timestamp - self->gc_ts) / 1000;
127 self->mem_pool_ts[self->mgr_name, self->pool_name] = timestamp;
141 (timestamp - self->mem_pool_ts[self->mgr_name, self->pool_name]) / 1000;
153 /timestamp > SAMPLING_TIME/
155 trace_time = (timestamp - START_TIME) / 1000;
172 SAMPLING_TIME = timestamp + INTERVAL_SECS * 1000000000ull;
177 trace_time = (timestamp
[all...]
H A Dclass_loading_stat.d64 SAMPLING_TIME = timestamp + INTERVAL_SECS * 1000000000ull;
111 /timestamp > SAMPLING_TIME/
128 SAMPLING_TIME = timestamp + INTERVAL_SECS * 1000000000ull;
H A Dobject_allocation_stat.d83 SAMPLING_TIME = timestamp + INTERVAL_SECS * 1000000000ull;
113 /timestamp > SAMPLING_TIME/
132 SAMPLING_TIME = timestamp + INTERVAL_SECS * 1000000000ull;
H A Dmethod_invocation_stat.d85 START_TIME = timestamp;
139 LAST_SYS_TS = timestamp;
159 SYS_TIME += (timestamp - LAST_SYS_TS);
165 RUN_TIME = (timestamp - START_TIME);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMSelectionListener.java39 public void ownerChanged(int screen, XMSelection sel, long newOwner, long data, long timestamp); argument
/openjdk7/hotspot/src/share/vm/memory/
H A DreferencePolicy.cpp46 jlong interval = timestamp_clock - java_lang_ref_SoftReference::timestamp(p);
77 jlong interval = timestamp_clock - java_lang_ref_SoftReference::timestamp(p);
/openjdk7/hotspot/src/share/vm/services/
H A DgcNotifier.hpp36 jlong timestamp; member in class:GCNotificationRequest
44 timestamp = ts;
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbPriv.java48 KerberosTime timestamp,
62 timestamp,
107 KerberosTime timestamp,
117 if (timestamp != null)
118 usec = new Integer(timestamp.getMicroSeconds());
127 timestamp,
165 check(enc_part.timestamp,
45 KrbPriv(byte[] userData, Credentials creds, EncryptionKey subKey, KerberosTime timestamp, SeqNumber seqNumber, HostAddress saddr, HostAddress raddr ) argument
105 mk_priv(byte[] userData, EncryptionKey key, KerberosTime timestamp, SeqNumber seqNumber, HostAddress sAddress, HostAddress rAddress ) argument
H A DKrbSafe.java47 KerberosTime timestamp,
60 timestamp,
108 KerberosTime timestamp,
118 if (timestamp != null)
119 usec = new Integer(timestamp.getMicroSeconds());
128 timestamp,
170 check(krb_safe.safeBody.timestamp,
44 KrbSafe(byte[] userData, Credentials creds, EncryptionKey subKey, KerberosTime timestamp, SeqNumber seqNumber, HostAddress saddr, HostAddress raddr ) argument
106 mk_safe(byte[] userData, EncryptionKey key, KerberosTime timestamp, SeqNumber seqNumber, HostAddress sAddress, HostAddress rAddress ) argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DMidiInDevice.java103 long timestamp = -1;
105 timestamp = nGetTimeStamp(id);
107 return timestamp;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DXrandr.h58 Time timestamp; /* when the screen change occurred */ member in struct:__anon964
95 Time timestamp);
104 Time timestamp);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTabEntry.java46 KerberosTime timestamp; field in class:KeyTabEntry
56 timestamp = new_time;
110 return timestamp;
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_MidiOut.c120 UINT32 timestamp) {
127 TRACE2("> MIDI_OUT_SendShortMessage() %x, time: %u\n", packedMsg, (unsigned int) timestamp);
152 UINT32 size, UINT32 timestamp) {
155 TRACE2("> MIDI_OUT_SendLongMessage() size %u, time: %u\n", (unsigned int) size, (unsigned int) timestamp);
119 MIDI_OUT_SendShortMessage(MidiDeviceHandle* handle, UINT32 packedMsg, UINT32 timestamp) argument
151 MIDI_OUT_SendLongMessage(MidiDeviceHandle* handle, UBYTE* data, UINT32 size, UINT32 timestamp) argument
H A DPLATFORM_API_LinuxOS_ALSA_MidiOut.c120 UINT32 timestamp) {
127 TRACE2("> MIDI_OUT_SendShortMessage() %x, time: %u\n", packedMsg, (unsigned int) timestamp);
152 UINT32 size, UINT32 timestamp) {
155 TRACE2("> MIDI_OUT_SendLongMessage() size %u, time: %u\n", (unsigned int) size, (unsigned int) timestamp);
119 MIDI_OUT_SendShortMessage(MidiDeviceHandle* handle, UINT32 packedMsg, UINT32 timestamp) argument
151 MIDI_OUT_SendLongMessage(MidiDeviceHandle* handle, UBYTE* data, UINT32 size, UINT32 timestamp) argument

Completed in 248 milliseconds

1234