Searched defs:timestamp (Results 1 - 25 of 506) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/media/
H A Dwebrtc_logging_message_data.h18 // the timestamp relative to |start_time| converted to seconds (XXX) plus
22 base::Time timestamp; member in struct:WebRtcLoggingMessageData
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCStatsReport.h36 @property(nonatomic, readonly) CFTimeInterval timestamp; variable
/external/chromium_org/ppapi/c/private/
H A Dpp_video_frame_private.h33 * A timestamp placing the frame in a video stream.
35 PP_TimeTicks timestamp; member in struct:PP_VideoFrame_Private
/external/srec/portable/src/
H A Dptimestamp.c27 void PTimeStampSet(PTimeStamp *timestamp) argument
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;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_screen.h48 unsigned timestamp; member in struct:softpipe_screen
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_screen.h48 unsigned timestamp; member in struct:softpipe_screen
/external/chromium_org/chrome/browser/spellchecker/
H A Dmisspelling.h69 base::Time timestamp; member in class:Misspelling
/external/chromium_org/chrome/installer/gcapi/
H A Dgcapi_reactivation.cc58 // a currently un-used timestamp for future proofing.
63 int64 timestamp = Time::Now().ToInternalValue(); local
65 &timestamp,
66 sizeof(timestamp),
/external/chromium_org/content/browser/renderer_host/input/
H A Dsynthetic_gesture.cc48 const base::TimeTicks& timestamp) {
49 return (timestamp - base::TimeTicks()).InSecondsF();
47 ConvertTimestampToSeconds( const base::TimeTicks& timestamp) argument
/external/chromium_org/content/browser/renderer_host/media/
H A Dmedia_stream_track_metrics_host.h46 // local (sent over a PeerConnection). |timestamp| specifies when
51 base::TimeTicks timestamp; member in struct:content::MediaStreamTrackMetricsHost::TrackInfo
/external/chromium_org/media/base/
H A Ddecoder_buffer_queue_unittest.cc18 // Helper to create buffers with specified timestamp in seconds.
21 static scoped_refptr<DecoderBuffer> CreateBuffer(int timestamp) { argument
23 buffer->set_timestamp(ToTimeDelta(timestamp));
28 static scoped_refptr<DecoderBuffer> CreateBuffer(int timestamp, int size) { argument
30 buffer->set_timestamp(ToTimeDelta(timestamp));
120 // Buffers with no timestamp don't affect duration.
H A Dtext_cue.cc9 TextCue::TextCue(const base::TimeDelta& timestamp, argument
14 : timestamp_(timestamp),
/external/chromium_org/net/quic/congestion_control/
H A Dtcp_receiver.cc27 QuicTime timestamp) {
25 RecordIncomingPacket(QuicByteCount bytes, QuicPacketSequenceNumber sequence_number, QuicTime timestamp) argument
/external/chromium_org/ppapi/cpp/private/
H A Dvideo_frame_private.cc15 PP_TimeTicks timestamp)
17 video_frame_.timestamp = timestamp;
32 set_timestamp(other.timestamp());
44 set_timestamp(other.timestamp());
14 VideoFrame_Private(const ImageData& image_data, PP_TimeTicks timestamp) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_screen.h56 unsigned timestamp; member in struct:llvmpipe_screen
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dtimestamp_map.h21 uint32_t timestamp; member in struct:webrtc::VCMTimestampDataTuple
38 int32_t Add(uint32_t timestamp, void* data);
39 void* Pop(uint32_t timestamp);
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Drtp_to_ntp_unittest.cc40 uint32_t timestamp = 0; local
43 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp));
45 timestamp -= kTimestampTicksPerMs;
46 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp));
48 timestamp -= kTimestampTicksPerMs;
51 // has a much smaller RTP timestamp than the newer.
52 EXPECT_FALSE(RtpToNtpMs(timestamp, rtcp, &timestamp_in_ms));
59 uint32_t timestamp = 0xFFFFFFFF; local
62 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp));
64 timestamp
79 uint32_t timestamp = 0xFFFFFFFF - 2 * kTimestampTicksPerMs; local
99 uint32_t timestamp = 0; local
116 uint32_t timestamp = 0xFFFFFFFF; local
136 uint32_t timestamp = 0; local
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_screen.h56 unsigned timestamp; member in struct:llvmpipe_screen
/external/chromium_org/android_webview/native/
H A Dstate_serializer_unittest.cc56 const base::Time timestamp = base::Time::FromInternalValue(12345); local
68 entry->SetTimestamp(timestamp);
90 EXPECT_EQ(timestamp, copy->GetTimestamp());
/external/chromium_org/ash/wm/gestures/
H A Doverview_gesture_handler_unittest.cc90 base::TimeDelta timestamp = base::TimeDelta::FromInternalValue( local
97 timestamp,
106 timestamp += step_delay;
109 timestamp,
121 timestamp += step_delay;
124 timestamp,
135 timestamp,
/external/chromium_org/chrome/browser/chromeos/power/
H A Dpower_button_observer.cc91 bool down, const base::TimeTicks& timestamp) {
93 OnPowerButtonEvent(down, timestamp);
90 PowerButtonEventReceived( bool down, const base::TimeTicks& timestamp) argument
/external/chromium_org/chrome/browser/sessions/
H A Dsession_types.cc26 base::Time timestamp) {
34 this->timestamp = timestamp;
25 SetFromSyncData(const sync_pb::SessionTab& sync_data, base::Time timestamp) argument
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsingle_client_sessions_sync_test.cc86 const base::Time timestamp = it3->timestamp(); local
92 ASSERT_EQ(timestamp, history_timestamp);
/external/chromium_org/chrome/test/chromedriver/
H A Dlogging_unittest.cc59 double timestamp = 0; local
60 EXPECT_TRUE(entry->GetDouble("timestamp", &timestamp));
61 EXPECT_LT(0, timestamp);
/external/chromium_org/chromecast/media/cma/base/
H A Ddecoder_buffer_adapter.cc20 base::TimeDelta DecoderBufferAdapter::timestamp() const { function in class:chromecast::media::DecoderBufferAdapter
21 return buffer_->timestamp();

Completed in 816 milliseconds

1234567891011>>