Searched refs:timestamp (Results 76 - 100 of 361) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/
H A DPlatformTouchEvent.h88 double timestamp() const { return m_timestamp; } function in class:WebCore::PlatformTouchEvent
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DMediaTexture.h36 typedef void (*FramerateCallbackProc)(ANativeWindow* window, int64_t timestamp);
/external/webkit/Source/WebKit2/Shared/win/
H A DWebEventFactory.cpp390 double timestamp = ::GetTickCount() * 0.001; // ::GetTickCount returns milliseconds (Chrome uses GetMessageTime() / 1000.0) local
392 int clickCount = WebKit::clickCount(type, button, position, timestamp);
395 return WebMouseEvent(type, button, position, globalPosition, 0, 0, 0, clickCount, modifiers, timestamp, didActivateWebView);
410 double timestamp = ::GetTickCount() * 0.001; // ::GetTickCount returns milliseconds (Chrome uses GetMessageTime() / 1000.0) local
443 return WebWheelEvent(WebEvent::Wheel, position, globalPosition, FloatSize(deltaX, deltaY), FloatSize(wheelTicksX, wheelTicksY), granularity, modifiers, timestamp);
459 double timestamp = ::GetTickCount() * 0.001; // ::GetTickCount returns milliseconds (Chrome uses GetMessageTime() / 1000.0) local
461 return WebKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, autoRepeat, isKeypad, isSystemKey, modifiers, timestamp);
/external/linux-tools-perf/util/
H A Dsession.c471 u64 timestamp; member in struct:sample_queue
504 u64 last_ts = os->last_sample ? os->last_sample->timestamp : 0ULL;
511 if (iter->timestamp > limit)
521 os->last_flush = iter->timestamp;
537 * We record the max timestamp t found in the pass n.
560 * Flush every events below timestamp 4
570 * Flush every events below timestamp 7
588 u64 timestamp = new->timestamp; local
595 os->max_timestamp = timestamp;
635 u64 timestamp = sample->time; local
[all...]
H A Dtrace-event-read.c285 unsigned long long timestamp; member in struct:cpu_data
392 die("expected a long long type for timestamp");
393 cpu_data[cpu].timestamp = data2host8(ptr);
439 cpu_data[cpu].timestamp += extend;
455 cpu_data[cpu].timestamp += delta;
460 data->ts = cpu_data[cpu].timestamp;
/external/oprofile/libopagent/
H A Dopagent.c175 header.timestamp = tv.tv_sec;
211 rec.timestamp = tv.tv_sec;
252 rec.timestamp = tv.tv_sec;
311 rec.timestamp = tv.tv_sec;
373 rec.timestamp = tv.tv_sec;
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DWebKitPluginHost.defs75 timestamp :double;
91 timestamp :double;
103 timestamp :double;
/external/iproute2/ip/
H A Dip.c31 int timestamp = 0; variable
199 } else if (matches(opt, "-timestamp") == 0) {
200 ++timestamp;
/external/opencv/cv/src/
H A Dcvmotempl.cpp46 CvSize size, float timestamp, float mhi_duration),
47 (silIm, silStep, mhiIm, mhiStep, size, timestamp, mhi_duration) )
56 v.f = timestamp;
70 mhi_duration = timestamp - mhi_duration;
113 double timestamp, double mhi_duration )
153 (float)timestamp, (float)mhi_duration ));
336 // override timestamp with the maximum value in MHI
415 double timestamp, double seg_thresh )
448 v.f = (float)timestamp; ts = v.i;
44 IPCVAPI_IMPL( CvStatus, icvUpdateMotionHistory_8u32f_C1IR, (const uchar * silIm, int silStep, float *mhiIm, int mhiStep, CvSize size, float timestamp, float mhi_duration), (silIm, silStep, mhiIm, mhiStep, size, timestamp, mhi_duration) ) argument
112 cvUpdateMotionHistory( const void* silhouette, void* mhimg, double timestamp, double mhi_duration ) argument
414 cvSegmentMotion( const CvArr* mhiimg, CvArr* segmask, CvMemStorage* storage, double timestamp, double seg_thresh ) argument
/external/chromium/chrome/browser/ui/gtk/bookmarks/
H A Dbookmark_menu_controller_gtk.h49 void Popup(GtkWidget* widget, gint button_type, guint32 timestamp);
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Drtpdump.cc213 // sequence number and timestamp.
221 // Get the RTP sequence number and timestamp of the dump packet.
248 // If we have only one packet or frame, we use the default timestamp
264 // Get the old RTP sequence number and timestamp.
267 uint32 timestamp = 0; local
268 packet->GetRtpTimestamp(&timestamp);
269 // Increase the RTP sequence number and timestamp.
271 timestamp += loop_count_ * rtp_timestamp_increase_;
272 // Write the updated sequence number and timestamp back to the RTP packet.
275 buffer.WriteUInt32(timestamp);
[all...]
/external/kernel-headers/original/sound/
H A Dcompress_offload.h57 * struct snd_compr_tstamp: timestamp descriptor
73 uint64_t timestamp; member in struct:snd_compr_tstamp
79 * @tstamp: timestamp infomation
163 * SNDRV_COMPRESS_TSTAMP: get the current timestamp value
/external/webkit/Source/WebCore/page/mac/
H A DEventHandlerMac.mm199 && [currentEventAfterHandlingMouseDown timestamp] >= [EventHandler::currentNSEvent() timestamp];
576 timestamp:[initiatingEvent timestamp]
588 timestamp:[initiatingEvent timestamp]
603 timestamp:[initiatingEvent timestamp]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewEventHandling.mm179 timestamp:[NSDate timeIntervalSinceReferenceDate]
201 timestamp:[NSDate timeIntervalSinceReferenceDate]
/external/webkit/Source/WebKit2/WebProcess/Geolocation/
H A DWebGeolocationManager.cpp84 RefPtr<GeolocationPosition> position = GeolocationPosition::create(data.timestamp, data.latitude, data.longitude, data.accuracy);
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
H A DOAuth.php463 * util function: current timestamp
636 $timestamp = $request instanceof OAuthRequest variable
643 $this->check_timestamp($timestamp);
644 $this->check_nonce($consumer, $token, $nonce, $timestamp);
662 * check that the timestamp is new enough
664 private function check_timestamp($timestamp) {
665 if( ! $timestamp )
667 'Missing timestamp parameter. The parameter is required'
670 // verify that timestamp is recentish
672 if (abs($now - $timestamp) >
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DWebEventConversion.cpp71 m_timestamp = webEvent.timestamp();
117 m_timestamp = webEvent.timestamp();
190 m_timestamp = webEvent.timestamp();
/external/chromium/chrome/browser/safe_browsing/
H A Dclient_side_detection_service.cc56 timestamp(time) {}
378 cache_state.timestamp > base::Time::Now() - kPositiveCacheInterval :
379 cache_state.timestamp > base::Time::Now() - kNegativeCacheInterval) {
400 cache_state.timestamp > base::Time::Now() - positive_cache_interval :
401 cache_state.timestamp > base::Time::Now() - negative_cache_interval) {
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
H A D__init__.py642 timestamp, nonce = request._get_timestamp_nonce()
643 self._check_timestamp(timestamp)
662 def _check_timestamp(self, timestamp):
663 """Verify that timestamp is recentish."""
664 timestamp = int(timestamp)
666 lapsed = now - timestamp
668 raise Error('Expired timestamp: given %d and now %s has a '
669 'greater difference than threshold %d' % (timestamp, now,
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11_auth.c32 os_time_t timestamp; member in struct:hostapd_cached_radius_acl
46 os_time_t timestamp; member in struct:hostapd_acl_query_data
115 if (now.sec - entry->timestamp > RADIUS_ACL_TIMEOUT)
309 query->timestamp = t.sec;
349 if (now - entry->timestamp > RADIUS_ACL_TIMEOUT) {
378 if (now - entry->timestamp > RADIUS_ACL_TIMEOUT) {
519 cache->timestamp = t.sec;
/external/wpa_supplicant_8/src/ap/
H A Dieee802_11_auth.c32 os_time_t timestamp; member in struct:hostapd_cached_radius_acl
46 os_time_t timestamp; member in struct:hostapd_acl_query_data
115 if (now.sec - entry->timestamp > RADIUS_ACL_TIMEOUT)
309 query->timestamp = t.sec;
349 if (now - entry->timestamp > RADIUS_ACL_TIMEOUT) {
378 if (now - entry->timestamp > RADIUS_ACL_TIMEOUT) {
519 cache->timestamp = t.sec;
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_11_auth.c32 os_time_t timestamp; member in struct:hostapd_cached_radius_acl
46 os_time_t timestamp; member in struct:hostapd_acl_query_data
115 if (now.sec - entry->timestamp > RADIUS_ACL_TIMEOUT)
309 query->timestamp = t.sec;
349 if (now - entry->timestamp > RADIUS_ACL_TIMEOUT) {
378 if (now - entry->timestamp > RADIUS_ACL_TIMEOUT) {
519 cache->timestamp = t.sec;
/external/chromium/net/tools/testserver/
H A Dchromiumsync.py187 timestamp = marker.timestamp_token_for_migration
189 timestamp = int(marker.token)
191 timestamp = 0
193 raise ValueError("No timestamp information in progress marker.")
195 self._state[data_type] = timestamp
211 """Return true the smallest timestamp requested across all datatypes."""
215 """Return a list of datatypes requesting updates from timestamp zero."""
216 return [datatype for datatype, timestamp in self._state.iteritems()
217 if timestamp == 0]
294 # both as the per-entry version as well as the update-progress timestamp
[all...]
/external/linux-tools-perf/
H A Dbuiltin-kmem.c200 u64 timestamp __used,
261 u64 timestamp __used,
285 int cpu, u64 timestamp, struct thread *thread)
295 process_alloc_event(data, event, cpu, timestamp, thread, 0);
301 process_alloc_event(data, event, cpu, timestamp, thread, 1);
307 process_free_event(data, event, cpu, timestamp, thread);
284 process_raw_event(union perf_event *raw_event __used, void *data, int cpu, u64 timestamp, struct thread *thread) argument
/external/chromium/webkit/glue/media/
H A Dvideo_renderer_impl.cc72 // Presentation timestamp logging is primarily used to measure performance
158 base::TimeDelta timestamp = video_frame->GetTimestamp(); local
160 timestamp != last_converted_timestamp_) {
162 last_converted_timestamp_ = timestamp;

Completed in 1271 milliseconds

1234567891011>>