HomeSort by relevance Sort by last modified time
    Searched refs:timestamp (Results 1 - 25 of 362) 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;
  /dalvik/libcore/security/src/main/java/java/security/
CodeSigner.java 34 private Timestamp timestamp; field in class:CodeSigner
44 * @param timestamp
50 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) {
55 this.timestamp = timestamp;
80 return timestamp == null ? that.timestamp == null : timestamp
    [all...]
Timestamp.java 27 * {@code Timestamp} represents a signed time stamp. {@code Timestamp} is
30 public final class Timestamp implements Serializable {
34 private Date timestamp; field in class:Timestamp
42 * Constructs a new instance of {@code Timestamp} with the specified {@code
43 * timestamp} and the given certificate path.
45 * @param timestamp
50 * if {@code timestamp} is {@code null} or if {@code
53 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
  /external/opencore/codecs_v2/video/m4v_h263/dec/include/
pvvideodecoderinterface.h 39 virtual bool DecodeVideoFrame(uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint *use_ext_ts, uint8 *yuv) = 0;
42 virtual bool DecodeVideoFrame(uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint *use_ext_ts, uint8 *yuv, OsclAOStatus *asynch)
45 OSCL_UNUSED_ARG(timestamp);
52 virtual bool DecodeVideoFrameAsyncResp(uint32 timestamp[], int32 buffer_size[])
54 OSCL_UNUSED_ARG(timestamp);
60 virtual bool getSynchResponse(uint32 timestamp[], int32 buffer_size[])
62 OSCL_UNUSED_ARG(timestamp);
80 virtual void DecSetReference(uint8 *refYUV, uint32 timestamp) = 0;
81 virtual void DecSetEnhReference(uint8 *refYUV, uint32 timestamp) = 0;
pvm4vdecoder.h 63 to use the externally provided system timestamp (1) (ignoring internal bitstream timestamp) or bitstream (0)
64 timestamp. The buffer_size[] parameter for video layers is updated with the remaining number of bytes in each
80 virtual bool DecodeVideoFrame(uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint *use_ext_timestamp, uint8 *yuv);
101 This function returns the timestamp of the most recently decoded video frame.
146 virtual void DecSetReference(uint8 *refYUV, uint32 timestamp);
151 virtual void DecSetEnhReference(uint8 *refYUV, uint32 timestamp);
  /frameworks/base/core/java/android/hardware/
SensorEvent.java 154 public long timestamp; field in class:SensorEvent
  /external/opencore/pvmi/pvmf/include/
pvmf_media_msg_header.h 21 * header class which is used to hold the basic information such as timestamp,
43 PVMFMediaMsgHeader(): timestamp(0),
50 PVMFTimestamp timestamp; member in struct:PVMFMediaMsgHeader
  /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/opencore/protocols/rtp_payload_parser/include/
payload_parser.h 83 Payload() : stream(0), timestamp(0), sequence(0),
85 Payload(uint32 stream, uint32 timestamp, uint32 sequence,
89 this->timestamp = timestamp;
110 uint32 timestamp; member in class:IPayloadParser::Payload
127 timestamp = aPayLoad.timestamp;
154 // Returns the smallest current timestamp among all streams managed
  /external/opencore/baselibs/media_data_structures/src/
gau_object.h 41 uint32 timestamp; member in struct:BSInfo
55 this->timestamp = X.timestamp;
65 this->timestamp = pX->timestamp;
131 * @brief Hide all the GAU operation to get the sample immediately before a certain timestamp
138 * @brief Hide all the GAU operation to get the sample at or immediately after a certain timestamp
145 * @brief Hide all the GAU operation to get the next I frame from the current bitstream, whose timestamp >= tsIn
  /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);

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 91011>>