HomeSort by relevance Sort by last modified time
    Searched refs:timestamp (Results 1 - 25 of 365) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery3D/src/com/cooliris/cache/
ImageList.java 22 public long timestamp[]; field in class:ImageList
  /external/srec/portable/src/
ptimestamp.c 27 void PTimeStampSet(PTimeStamp *timestamp)
31 timestamp->secs = 0;
32 timestamp->msecs = 0;
39 timestamp->secs = now.time;
40 timestamp->msecs = now.millitm;
44 timestamp->secs = now.tv_sec;
45 timestamp->msecs = now.tv_nsec / MSECOND2NSECOND;
  /libcore/luni/src/main/java/java/security/
CodeSigner.java 32 private Timestamp timestamp; field in class:CodeSigner
42 * @param timestamp
48 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) {
53 this.timestamp = timestamp;
78 return timestamp == null ? that.timestamp == null : timestamp
    [all...]
Timestamp.java 25 * {@code Timestamp} represents a signed time stamp. {@code Timestamp} is
28 public final class Timestamp implements Serializable {
32 private Date timestamp; field in class:Timestamp
40 * Constructs a new instance of {@code Timestamp} with the specified {@code
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)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
wpamsg.h 26 timestamp = QDateTime::currentDateTime();
31 QDateTime getTimestamp() const { return timestamp; }
36 QDateTime timestamp; member in class:WpaMsg
  /external/webkit/WebCore/page/
Geoposition.h 40 static PassRefPtr<Geoposition> create(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp)
42 return adoptRef(new Geoposition(coordinates, timestamp));
45 DOMTimeStamp timestamp() const { return m_timestamp; } function in class:WebCore::Geoposition
49 Geoposition(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp)
51 , m_timestamp(timestamp)
Geoposition.idl 30 readonly attribute DOMTimeStamp timestamp;
GeolocationPosition.h 39 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy)); }
41 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); }
43 double timestamp() const { return m_timestamp; } function in class:WebCore::GeolocationPosition
59 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy)
60 : m_timestamp(timestamp)
75 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
76 : m_timestamp(timestamp)
  /external/wpa_supplicant/wpa_gui/
wpamsg.h 21 timestamp = QDateTime::currentDateTime();
26 QDateTime getTimestamp() const { return timestamp; }
31 QDateTime timestamp; member in class:WpaMsg
  /external/wpa_supplicant/wpa_gui-qt4/
wpamsg.h 27 timestamp = QDateTime::currentDateTime();
32 QDateTime getTimestamp() const { return timestamp; }
37 QDateTime timestamp; member in class:WpaMsg
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
wpamsg.h 21 timestamp = QDateTime::currentDateTime();
26 QDateTime getTimestamp() const { return timestamp; }
31 QDateTime timestamp; member in class:WpaMsg
  /frameworks/base/core/java/android/hardware/
SensorEvent.java 184 * private float timestamp;
187 * if (timestamp != 0) {
188 * final float dT = (event.timestamp - timestamp) * NS2S;
193 * timestamp = event.timestamp;
308 public long timestamp; field in class:SensorEvent
  /frameworks/base/core/java/android/gesture/
GesturePoint.java 30 public final long timestamp; field in class:GesturePoint
35 timestamp = t;
42 // Read timestamp
43 final long timeStamp = in.readLong();
44 return new GesturePoint(x, y, timeStamp);
49 return new GesturePoint(x, y, timestamp);
  /bootable/recovery/minzip/
DirUtil.h 31 * If timestamp is non-NULL, new directories will be timestamped accordingly.
37 const struct utimbuf *timestamp, bool stripFileName);
  /external/srec/portable/include/
ptimestamp.h 43 * Seconds component of timestamp.
48 * Milliseconds component of timestamp.
58 PORTABLE_API void PTimeStampSet(PTimeStamp *timestamp);
63 * @param a First timestamp
64 * @param b Second timestamp
  /external/webkit/WebKit/mac/WebView/
WebGeolocationPosition.h 33 - (id)initWithTimestamp:(double)timestamp latitude:(double)latitude longitude:(double)longitude accuracy:(double)accuracy;
  /external/bluetooth/bluez/audio/
rtp.h 36 uint32_t timestamp; member in struct:rtp_header
61 uint32_t timestamp; member in struct:rtp_header
  /external/webkit/WebKit/win/Interfaces/
IWebGeolocationPosition.idl 38 HRESULT initWithTimestamp([in] double timestamp, [in] double latitude, [in] double longitude, [in] double accuracy);
  /frameworks/base/location/java/android/location/
IGpsStatusListener.aidl 32 void onNmeaReceived(long timestamp, String nmea);
  /external/netperf/
hist.h 88 HIST_timestamp - take a timestamp suitable for use in a histogram.
92 void HIST_timestamp(hrtime_t *timestamp);
94 void HIST_timestamp(hrt_t *timestamp);
96 void HIST_timestamp(LARGE_INTEGER *timestamp);
98 void HIST_timestamp(struct timeval *timestamp);
  /packages/apps/Gallery3D/src/com/cooliris/media/
DiskCache.java 64 public byte[] get(long key, long timestamp) {
72 if (record.timestamp < timestamp) {
73 Log.i(TAG, "File has been updated to " + timestamp + " since the last time " + record.timestamp
92 public boolean isDataAvailable(long key, long timestamp) {
100 if (record.timestamp < timestamp) {
108 public void put(long key, byte[] data, long timestamp) {
123 mIndexMap.put(key, new Record(currentChunk, record.offset, data.length, record.sizeOnDisk, timestamp));
263 final long timestamp = dataInput.readLong(); local
361 public final long timestamp; field in class:DiskCache.Record
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
main.py 69 self.timestamp = None
70 timestamp = self.request.get('timestamp')
71 if timestamp:
72 self.timestamp = datetime.strptime(timestamp, '%Y/%m/%d %H:%M')
81 if self.timestamp is None or getattr(friend, 'updated') > self.timestamp:
91 if datastore.User.get_user_last_updated(friend_handle) > self.timestamp:
  /cts/tests/tests/gesture/src/android/gesture/cts/
GesturePointTest.java 42 assertEquals(expected_timestamp, point.timestamp);
  /bionic/libc/kernel/common/linux/
hdsmart.h 70 unsigned int timestamp; member in struct:ata_smart_errorlog_command_struct_s
77 unsigned short timestamp; member in struct:ata_smart_errorlog_error_struct_s
99 unsigned short timestamp; member in struct:ata_smart_selftestlog_struct_s
  /development/ndk/platforms/android-3/include/linux/
hdsmart.h 70 unsigned int timestamp; member in struct:ata_smart_errorlog_command_struct_s
77 unsigned short timestamp; member in struct:ata_smart_errorlog_error_struct_s
99 unsigned short timestamp; member in struct:ata_smart_selftestlog_struct_s

Completed in 881 milliseconds

1 2 3 4 5 6 7 8 91011>>