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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /hardware/invensense/libsensors_iio/software/core/mllite/
hal_outputs.h 17 inv_time_t * timestamp);
19 inv_time_t * timestamp);
21 inv_time_t * timestamp);
23 inv_time_t * timestamp);
25 inv_time_t * timestamp);
27 inv_time_t * timestamp);
31 inv_time_t * timestamp);
33 inv_time_t * timestamp);
data_builder.c 340 /** Get last timestamp across all 3 sensors that are on.
341 * This find out which timestamp has the largest value for sensors that are on.
346 inv_time_t timestamp = 0; local
348 timestamp = sensors.accel.timestamp;
351 if (timestamp < sensors.gyro.timestamp) {
352 timestamp = sensors.gyro.timestamp;
356 if (timestamp < sensors.compass.timestamp)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpamsg.h 20 timestamp = QDateTime::currentDateTime();
25 QDateTime getTimestamp() const { return timestamp; }
30 QDateTime timestamp; member in class:WpaMsg
  /external/webkit/Source/WebCore/page/
Geoposition.h 38 static PassRefPtr<Geoposition> create(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp)
40 return adoptRef(new Geoposition(coordinates, timestamp));
48 DOMTimeStamp timestamp() const { return m_timestamp; } function in class:WebCore::Geoposition
52 Geoposition(PassRefPtr<Coordinates> coordinates, DOMTimeStamp timestamp)
54 , 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/webkit/Source/WebKit2/Shared/
WebGeolocationPosition.cpp 34 WebGeolocationPosition::WebGeolocationPosition(double timestamp, double latitude, double longitude, double accuracy)
36 m_data.timestamp = timestamp;
48 encoder->encode(CoreIPC::In(timestamp, latitude, longitude, accuracy));
53 return decoder->decode(CoreIPC::Out(data.timestamp, data.latitude, data.longitude, data.accuracy));
WebGeolocationPosition.h 44 double timestamp; member in struct:WebKit::WebGeolocationPosition::Data
50 static PassRefPtr<WebGeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy)
52 return adoptRef(new WebGeolocationPosition(timestamp, latitude, longitude, accuracy));
57 double timestamp() const { return m_data.timestamp; } function in class:WebKit::WebGeolocationPosition
65 WebGeolocationPosition(double timestamp, double latitude, double longitude, double accuracy);
  /frameworks/base/core/java/android/hardware/
SensorEvent.java 173 * private float timestamp;
178 * if (timestamp != 0) {
179 * final float dT = (event.timestamp - timestamp) * NS2S;
207 * timestamp = event.timestamp;
502 public long timestamp; field in class:SensorEvent
TriggerEvent.java 28 * when the trigger happened, the timestamp along with detailed
57 public long timestamp; field in class:TriggerEvent
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKGeolocationPosition.cpp 39 WKGeolocationPositionRef WKGeolocationPositionCreate(double timestamp, double latitude, double longitude, double accuracy)
41 RefPtr<WebGeolocationPosition> position = WebGeolocationPosition::create(timestamp, latitude, longitude, accuracy);
WKGeolocationPosition.h 37 WK_EXPORT WKGeolocationPositionRef WKGeolocationPositionCreate(double timestamp, double latitude, double longitude, double accuracy);
  /frameworks/native/libs/utils/
SystemClock.cpp 122 static inline void checkTimeStamps(int64_t timestamp,
136 if (timestamp < prevTimestamp) {
139 timestamp, gettime_method_names[curMethod],
144 *prevTimestampPtr = timestamp;
157 int64_t timestamp; local
169 timestamp = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec;
170 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod,
172 return timestamp;
190 timestamp = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec;
191 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod, METHOD_IOCTL)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
RevokedOffer.java 26 * the reason, the workgroup, the userJID, and the timestamp which the message was received.<br>
37 private Date timestamp; field in class:RevokedOffer
46 * @param timestamp the timestamp at which the revocation was issued
49 String reason, Date timestamp) {
57 this.timestamp = timestamp;
93 * @return the timestamp at which the revocation was issued
96 return this.timestamp;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/
SimpleDate.java 29 private long timestamp; field in class:SimpleDate
35 public SimpleDate(long timestamp) {
36 setTimestamp(timestamp);
41 public void setTimestamp(long timestamp) {
43 // TODO find a more efficient way to convert a timestamp to a date?
44 sCalendarInstance.setTimeInMillis(timestamp);
48 this.timestamp = timestamp;
49 mCachedStringRepresentation = DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp);
110 mCachedStringRepresentation = DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
TimeLineGraphItem.java 27 long timestamp; field in class:TimeLineGraphItem
33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) {
34 this(title, description, value, color,display, timestamp,isSpecial);
38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) {
39 this(title, description, value, color,display, timestamp);
43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) {
44 this(title, description, value, color,timestamp);
48 TimeLineGraphItem(String title, String description, double value, Color color,long timestamp) {
53 this.timestamp=timestamp;
    [all...]
  /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);
  /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/Source/WebKit/mac/WebView/
WebGeolocationPosition.h 33 - (id)initWithTimestamp:(double)timestamp latitude:(double)latitude longitude:(double)longitude accuracy:(double)accuracy;
  /external/chromium/chrome/browser/policy/
cloud_policy_cache_base.h 79 // |timestamp| returns the timestamp embedded in |policy|, callers can pass
81 // to discard policy data with a timestamp from the future.
84 base::Time* timestamp,
87 void SetUnmanagedInternal(const base::Time& timestamp);
95 // Decodes a PolicyFetchResponse into two PolicyMaps and a timestamp.
100 base::Time* timestamp,
111 void set_last_policy_refresh_time(base::Time timestamp) {
112 last_policy_refresh_time_ = timestamp;
  /external/oprofile/libopagent/
jitdump.h 47 u64 timestamp; member in struct:jitheader
68 u64 timestamp; member in struct:jr_code_load
79 u64 timestamp; member in struct:jr_code_unload
87 u64 timestamp; member in struct:jr_code_close
94 u64 timestamp; member in struct:jr_code_debug_info
  /hardware/qcom/media/mm-video/vidc/vdec/inc/
ts_parser.h 61 typedef struct timestamp { struct in class:omx_time_stamp_reorder
64 }timestamp; typedef in class:omx_time_stamp_reorder
66 timestamp input_timestamps[TIME_SZ];

Completed in 1156 milliseconds

1 2 3 4 5 6 7 8 91011>>