HomeSort by relevance Sort by last modified time
    Searched full:timestamp (Results 426 - 450 of 4313) sorted by null

<<11121314151617181920>>

  /external/chromium_org/tools/telemetry/telemetry/unittest/
gtest_testrunner.py 22 timestamp = time.time()
31 ms = (endts - timestamp) * 1000
  /external/webrtc/src/system_wrappers/source/
cpu_win.h 86 // Cpu timestamp
90 // Timestamp
  /frameworks/av/include/media/nbaio/
AudioStreamOutSink.h 53 virtual status_t getNextWriteTimestamp(int64_t *timestamp);
55 virtual status_t getTimestamp(AudioTimestamp& timestamp);
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3OutputStream.h 74 nsecs_t timestamp,
91 nsecs_t timestamp);
  /frameworks/base/core/java/android/hardware/
TriggerEvent.java 28 * when the trigger happened, the timestamp along with detailed
57 public long timestamp; field in class:TriggerEvent
  /frameworks/native/services/surfaceflinger/tests/vsync/
vsync.cpp 37 float t = float(buffer[i].header.timestamp - oldTimeStamp) / s2ns(1);
40 oldTimeStamp = buffer[i].header.timestamp;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
prctl.h 43 /* Get/set whether we use statistical process timing or accurate timestamp
49 # define PR_TIMING_TIMESTAMP 1 /* Accurate timestamp based
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
prctl.h 43 /* Get/set whether we use statistical process timing or accurate timestamp
49 # define PR_TIMING_TIMESTAMP 1 /* Accurate timestamp based
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
prctl.h 43 /* Get/set whether we use statistical process timing or accurate timestamp
49 # define PR_TIMING_TIMESTAMP 1 /* Accurate timestamp based
  /cts/tests/tests/net/src/android/net/wifi/cts/
ScanResultTest.java 157 long timestamp = 0; local
168 timestamp = result.timestamp;
169 assertTrue(timestamp != 0);
180 long timeDiff = (result.timestamp - timestamp) / 1000;
  /device/generic/goldfish/camera/
CallbackNotifier.cpp 212 nsecs_t timestamp,
216 isNewVideoFrameTime(timestamp)) {
221 mDataCBTimestamp(timestamp, CAMERA_MSG_VIDEO_FRAME,
292 bool CallbackNotifier::isNewVideoFrameTime(nsecs_t timestamp)
295 if ((timestamp - mLastFrameTimestamp) >= mFrameRefreshFreq) {
296 mLastFrameTimestamp = 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
  /external/chromium_org/media/base/
audio_buffer_queue.cc 29 if (buffers_.empty() && buffer_in->timestamp() != kNoTimestamp()) {
30 current_time_ = buffer_in->timestamp();
118 // Next buffer may not have timestamp, so we need to update current
119 // timestamp before switching to the next buffer.
154 if (buffer != buffers_.end() && (*buffer)->timestamp() != kNoTimestamp()) {
158 (*buffer)->timestamp() + base::TimeDelta::FromMicroseconds(
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIAccess.cpp 105 void MIDIAccess::didReceiveMIDIData(unsigned portIndex, const unsigned char* data, size_t length, double timeStamp)
116 double timeStampInMilliseconds = 1000 * document->loader()->timing()->monotonicTimeToZeroBasedDocumentTime(timeStamp);
127 double timeStamp;
132 timeStamp = 0;
137 timeStamp = documentStartTime + 0.001 * timeStampInMilliseconds;
140 m_accessor->sendMIDIData(portIndex, data, length, timeStamp);
  /external/chromium_org/third_party/libjingle/source/talk/base/
asyncpacketsocket.h 41 PacketTime() : timestamp(-1), not_before(-1) {}
42 PacketTime(int64 timestamp, int64 not_before)
43 : timestamp(timestamp), not_before(not_before) {
46 int64 timestamp; // Receive time after socket delivers the data. member in struct:talk_base::PacketTime
48 // indicating the potential error in the |timestamp| value,
  /external/smack/src/org/jivesoftware/smackx/packet/
DelayInformation.java 31 * Represents timestamp information about data stored for later delivery. A DelayInformation will
32 * always includes the timestamp when the packet was originally sent and may include more
62 * Creates a new instance with the specified timestamp.
63 * @param stamp the timestamp
92 * Returns the timestamp when the packet was originally sent. The returned Date is
95 * @return the timestamp when the packet was originally sent.
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h 65 uint32 timeStamp; /* time stamp */
109 uint32 timestamp; member in struct:tagVopHeaderInfo
155 Bool PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
156 Bool PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp);
157 OSCL_IMPORT_REF Bool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *timestamp, int32 *buffer_size, uint use_ext_timestamp[], uint8* currYUV);
158 Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 buffer_size[], VopHeaderInfo *header_info, uint use_ext_timestamp[], uint8 *currYUV);
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaSessionStatus.java 46 private static final String KEY_TIMESTAMP = "timestamp";
90 * Gets the timestamp associated with the status information in
93 * @return The status timestamp in the {@link SystemClock#elapsedRealtime()} time base.
131 result.append("timestamp=");
180 * reference timestamp.
203 * Sets the timestamp associated with the status information in
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetGetterTests.java 30 import java.sql.Timestamp;
134 java.sql.Timestamp.class, // Types.TIMESTAMP,
166 + " dateVal DATE, " + " timeVal TIME, " + " TS TIMESTAMP, "
701 * "TIMESTAMP", "DATETIME", "TINYBLOB", "BLOB", "MEDIUMBLOB",
708 "TIME", "TIMESTAMP", "DATETIME", "BLOB", "BLOB", "BLOB",
922 // getTime should return Time value for a TIMESTAMP type but returns null
957 // Compatibility Test: TIMESTAMP value
978 // getTime on TIMESTAMP value fails: returns null
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
two_client_typed_urls_sync_test.cc 98 // Create a URL with a timestamp 1 year before today.
99 base::Time timestamp = base::Time::Now() - base::TimeDelta::FromDays(365); local
104 timestamp);
130 // Create a URL with a timestamp 1 year before today.
131 base::Time timestamp = base::Time::Now() - base::TimeDelta::FromDays(365); local
136 timestamp);
298 base::Time timestamp = base::Time::Now(); local
299 // Put a non-typed URL in both clients with an identical timestamp.
304 history::SOURCE_BROWSED, timestamp);
306 history::SOURCE_BROWSED, timestamp);
336 base::Time timestamp = base::Time::Now(); local
    [all...]
  /external/chromium_org/media/cdm/ppapi/
clear_key_cdm.cc 105 base::TimeDelta::FromMicroseconds(input_buffer.timestamp));
359 decrypted_block->SetTimestamp(buffer->timestamp().InMicroseconds());
460 int64_t timestamp = 0; local
464 timestamp = encrypted_buffer.timestamp;
467 return video_decoder_->DecodeFrame(data, size, timestamp, decoded_frame);
484 int64_t timestamp = 0; local
488 timestamp = encrypted_buffer.timestamp;
491 return audio_decoder_->DecodeBuffer(data, size, timestamp, audio_frames)
584 int64 timestamp = CurrentTimeStampInMicroseconds(); local
    [all...]
  /external/chromium_org/ui/aura/test/
event_generator.cc 291 base::TimeDelta timestamp = ui::EventTimeForNow(); local
292 ui::TouchEvent press(ui::ET_TOUCH_PRESSED, start, kTouchId, timestamp);
302 timestamp += step_delay;
303 ui::TouchEvent move(ui::ET_TOUCH_MOVED, location, kTouchId, timestamp);
308 ui::TouchEvent release(ui::ET_TOUCH_RELEASED, end, kTouchId, timestamp);
396 base::TimeDelta timestamp = base::TimeDelta::FromInternalValue( local
400 timestamp,
410 timestamp += step_delay;
413 timestamp,
423 timestamp,
436 base::TimeDelta timestamp = ui::EventTimeForNow(); local
    [all...]
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/
results_holder.c 59 void inv_store_gaming_quaternion(const long *quat, inv_time_t timestamp)
63 rh.gam_timestamp = timestamp;
69 * @param[in] timestamp Timestamp of when this is valid
71 void inv_set_compass_correction(const long *data, inv_time_t timestamp)
75 rh.nav_timestamp = timestamp;
81 * @param[out] timestamp Timestamp of when this is valid
83 void inv_get_compass_correction(long *data, inv_time_t *timestamp)
86 *timestamp = rh.nav_timestamp
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.cc 213 // 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/chromium_org/chrome/browser/resources/google_now/
cards.js 70 * timestamp to calculate show and hide times.
89 * |timestamp| is the time when corresponding Chrome notification was created or
94 * timestamp: number,
164 * @param {number} timestamp Time for which to calculate visibility.
168 * visible at |timestamp|.
170 function iterateUncombinedNotifications(combinedCard, timestamp, callback) {
174 uncombinedNotification.showTime <= timestamp;
175 var shouldHide = uncombinedNotification.hideTime <= timestamp;
252 timestamp: now,
286 notificationData.timestamp,
    [all...]

Completed in 2391 milliseconds

<<11121314151617181920>>