HomeSort by relevance Sort by last modified time
    Searched defs:timestamp (Results 51 - 75 of 587) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/shared_impl/
ppb_gamepad_shared.h 35 unsigned long long timestamp; member in struct:ppapi::WebKitGamepad
  /external/chromium_org/sync/engine/
traffic_recorder.h 51 base::Time timestamp; member in struct:syncer::TrafficRecorder::TrafficRecord
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtputils.h 42 uint32 timestamp; member in struct:cricket::RtpHeader
  /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;
  /frameworks/av/camera/
ICameraClient.cpp 70 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
75 data.writeInt64(timestamp);
118 nsecs_t timestamp = data.readInt64(); local
121 dataCallbackTimestamp(timestamp, msgType, imageData);
  /frameworks/av/camera/camera2/
ICameraDeviceCallbacks.cpp 68 void onCaptureStarted(int32_t requestId, int64_t timestamp)
74 data.writeInt64(timestamp);
122 int64_t timestamp = data.readInt64(); local
123 onCaptureStarted(requestId, timestamp);
  /frameworks/native/include/gui/
DisplayEventReceiver.h 52 nsecs_t timestamp; member in struct:android::DisplayEventReceiver::Event::Header
  /hardware/qcom/media/mm-video-legacy/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];
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
ts_parser.h 62 typedef struct timestamp { struct in class:omx_time_stamp_reorder
65 } timestamp; typedef in class:omx_time_stamp_reorder
67 timestamp input_timestamps[TIME_SZ];
  /system/core/libutils/
SystemClock.cpp 66 * DEBUG_TIMESTAMP to 1 and call the timestamp routine from a single thread
78 static inline void checkTimeStamps(int64_t timestamp,
92 if (timestamp < prevTimestamp) {
95 timestamp, gettime_method_names[curMethod],
100 *prevTimestampPtr = timestamp;
105 #define checkTimeStamps(timestamp, prevTimestampPtr, prevMethodPtr, curMethod)
116 int64_t timestamp; local
130 timestamp = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec;
131 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod,
133 return timestamp;
    [all...]
  /device/samsung/manta/libsensors/iio/
events.h 22 * @timestamp: best estimate of time of event occurrence (often from
27 __s64 timestamp; member in struct:iio_event_data
  /external/chromium/chrome/browser/extensions/
extension_idle_api.cc 37 double timestamp; member in struct:__anon4536::ExtensionIdlePollingData
88 polling_data.timestamp = base::Time::Now().ToDoubleT();
106 double delta = time_now - polling_data.timestamp;
  /external/chromium_org/android_webview/native/
state_serializer.cc 269 int64 timestamp; local
270 if (!iterator->ReadInt64(&timestamp))
272 entry->SetTimestamp(base::Time::FromInternalValue(timestamp));
  /external/chromium_org/chrome/browser/sessions/
session_types.h 45 // timestamp. Uses SerializedNavigationEntry::FromSyncData to fill
49 base::Time timestamp);
94 // Timestamp for when this tab was last modified.
95 base::Time timestamp; member in struct:SessionTab
139 // Timestamp for when this window was last modified.
140 base::Time timestamp; member in struct:SessionWindow
tab_restore_service.h 69 base::Time timestamp; member in struct:TabRestoreService::Entry
  /external/chromium_org/chrome/common/media_galleries/
picasa_types.h 29 AlbumInfo(const std::string& name, const base::Time& timestamp,
35 base::Time timestamp; member in struct:picasa::AlbumInfo
  /external/chromium_org/chromeos/network/
network_util.h 28 base::Time timestamp; member in struct:chromeos::SMS
42 base::Time timestamp; // Timestamp when this AP was detected. member in struct:chromeos::WifiAccessPoint
  /external/chromium_org/media/base/android/
demuxer_stream_player_params.h 47 base::TimeDelta timestamp; member in struct:media::AccessUnit
  /external/chromium_org/media/base/
decoder_buffer.h 63 base::TimeDelta timestamp() const { function in class:media::DecoderBuffer
68 void set_timestamp(const base::TimeDelta& timestamp) {
70 timestamp_ = timestamp;
  /external/chromium_org/sandbox/win/src/
handle_closer_test.cc 25 // Generate a unique value from the exe's size and timestamp.
31 FILETIME timestamp; local
32 CHECK(::GetFileTime(module, &timestamp, NULL, NULL));
35 timestamp.dwLowDateTime,
36 timestamp.dwHighDateTime);
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationPosition.h 37 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy)); }
39 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)); }
41 double timestamp() const { return m_timestamp; } function in class:WebCore::GeolocationPosition
57 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy)
58 : m_timestamp(timestamp)
73 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)
74 : m_timestamp(timestamp)
  /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...]
  /external/iproute2/ip/
ip.c 31 int timestamp = 0; variable
212 } else if (matches(opt, "-timestamp") == 0) {
213 ++timestamp;
  /external/ipsec-tools/src/racoon/
evt.h 41 time_t timestamp; member in struct:evtdump
  /external/oauth/core/src/main/java/net/oauth/
SimpleOAuthValidator.java 24 * A simple OAuthValidator, which checks the version, whether the timestamp
89 long timestamp = Long.parseLong(message.getParameter(OAuth.OAUTH_TIMESTAMP)) * 1000L; local
93 if (timestamp < min || max < timestamp) {

Completed in 966 milliseconds

1 23 4 5 6 7 8 91011>>