Searched defs:timestamp (Results 26 - 45 of 45) sorted by relevance

12

/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_mgrsel.c263 mgrown->data.l[0]); /* timestamp */
282 long timestamp; local
303 timestamp = mgrown->data.l[0];
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_MidiOut.c331 INT32 MIDI_OUT_SendShortMessage(MidiDeviceHandle* handle, UINT32 packedMsg, UINT32 timestamp) { argument
334 TRACE2("> MIDI_OUT_SendShortMessage %x, time: %d\n", packedMsg, timestamp);
345 INT32 MIDI_OUT_SendLongMessage(MidiDeviceHandle* handle, UBYTE* data, UINT32 size, UINT32 timestamp) { argument
352 TRACE2("> MIDI_OUT_SendLongMessage size %d, time: %d\n", size, timestamp);
/openjdk7/jdk/src/share/classes/sun/security/timestamp/
H A DTSResponse.java26 package sun.security.timestamp;
40 * This class provides the response corresponding to a timestamp request,
113 * The requested timestamp was granted.
118 * The requested timestamp was granted with some modifications.
123 * The requested timestamp was not granted.
128 * The requested timestamp has not yet been processed.
198 * Constructs an object to store the response to a timestamp request.
202 * parsing the timestamp response.
237 return "the timestamp request was granted.";
241 "the timestamp reques
[all...]
/openjdk7/jdk/src/share/classes/sun/management/
H A DGarbageCollectorImpl.java126 void createGCNotification(long timestamp, argument
139 timestamp,
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
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...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDragSourceContextPeer.java93 long timestamp = triggerEvent.getWhen();
144 clickCount, timestamp, cursor, fDragCImage, dragImageOffset.x, dragImageOffset.y,
469 InputEvent triggerEvent, int dragPosX, int dragPosY, int extModifiers, int clickCount, long timestamp,
468 createNativeDragSource(Component component, ComponentPeer peer, long nativePeer, Transferable transferable, InputEvent triggerEvent, int dragPosX, int dragPosY, int extModifiers, int clickCount, long timestamp, Cursor cursor, CImage nsDragImage, int dragImageOffsetX, int dragImageOffsetY, int sourceActions, long[] formats, Map formatMap) argument
/openjdk7/hotspot/src/share/vm/utilities/
H A Devents.hpp39 // would record at least a timestamp and the current Thread, along
74 double timestamp; member in class:EventLogBase::EventRecord
129 out->print("Event: %.3f ", e.timestamp);
154 double timestamp = fetch_timestamp(); local
158 _records[index].timestamp = timestamp;
195 // Logs a generic message with timestamp and format as printf.
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DBaseFileManager.java349 final long timestamp; field in class:BaseFileManager.ContentCacheEntry
353 this.timestamp = file.getLastModified();
358 return timestamp == file.getLastModified();
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DPlatformMidi.h65 INT64 timestamp; // in microseconds member in struct:tag_MidiMessage
134 int MIDI_QueueAddShort(MidiMessageQueue* queue, UINT32 packedMsg, INT64 timestamp, int overwrite);
136 INT32 sysexIndex, INT64 timestamp, int overwrite);
324 INT32 MIDI_OUT_SendShortMessage(MidiDeviceHandle* handle, UINT32 packedMsg, UINT32 timestamp);
331 INT32 MIDI_OUT_SendLongMessage(MidiDeviceHandle* handle, UBYTE* data, UINT32 size, UINT32 timestamp);
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DArguments.java61 private boolean timestamp; field in class:Arguments
172 timestamp = true;
317 optionFormat = finder.getOptionFormat(specialOption, timestamp);
400 return timestamp;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMSelection.java191 long timestamp = xce.get_data(0);
199 sel.dispatchOwnerChangedEvent(xev,screen,owner,data, timestamp);
332 synchronized void dispatchOwnerChangedEvent(XEvent ev, int screen, long owner, long data, long timestamp) { argument
337 disp.ownerChanged(screen,this, owner, data, timestamp);
H A DXSystemTrayPeer.java64 public void ownerChanged(int screen, XMSelection sel, long newOwner, long data, long timestamp) { argument
/openjdk7/jdk/src/windows/native/java/net/
H A DInet6AddressImpl.c372 int timestamp; local
414 timestamp = GetCurrentTime();
422 memcpy((icmp6 + 1), &timestamp, sizeof(int));
479 ntohs(icmp6->icmp6_id) == pid && i == timestamp) {
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.cpp73 double timestamp = fetch_timestamp(); local
77 _records[index].timestamp = timestamp;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.hpp133 long timestamp() const { return _timestamp; } function in class:VM_Operation
134 void set_timestamp(long timestamp) { _timestamp = timestamp; } argument
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DJarSigner.java838 Date timestamp, boolean checkUsage) {
864 if (timestamp == null) {
878 x509Cert.checkValidity(timestamp);
937 private String printTimestamp(String tab, Timestamp timestamp) { argument
943 Object[] source = { timestamp.getTimestamp() };
1274 rb.getString("requesting.a.signature.timestamp"));
1490 // display the signature timestamp, if present
1491 Date timestamp;
1496 timestamp = ts.getTimestamp();
1498 timestamp
837 printCert(String tab, Certificate c, boolean checkValidityPeriod, Date timestamp, boolean checkUsage) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.cpp176 jlong Management::timestamp() { function in class:Management
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmstypes.c1325 cmsDateTimeNumber timestamp; local
1332 if (io->Read(io, &timestamp, sizeof(cmsDateTimeNumber), 1) != 1) return NULL;
1334 _cmsDecodeDateTimeNumber(&timestamp, NewDateTime);
1347 cmsDateTimeNumber timestamp; local
1349 _cmsEncodeDateTimeNumber(&timestamp, DateTime);
1350 if (!io ->Write(io, sizeof(cmsDateTimeNumber), &timestamp)) return FALSE;
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp2375 jlong java_lang_ref_SoftReference::timestamp(oop ref) { function in class:java_lang_ref_SoftReference
3198 CHECK_OFFSET("java/lang/ref/SoftReference", java_lang_ref_SoftReference, timestamp, "J");

Completed in 105 milliseconds

12