HomeSort by relevance Sort by last modified time
    Searched refs:Timestamp (Results 26 - 50 of 75) sorted by null

12 3

  /external/chromium_org/net/tools/quic/benchmark/
run_client.py 30 def Timestamp(datetm=None):
31 """Get the timestamp in microseconds.
33 datetm: the date and time to be converted to timestamp.
36 The timestamp in microseconds.
40 timestamp = (diff.days * 86400 + diff.seconds) * 1000000 + diff.microseconds
41 return timestamp
103 start_time = Timestamp()
108 end_time = Timestamp()
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
SQL_Results.java 17 import java.sql.Timestamp;
186 Timestamp timestamp = new Timestamp(lastBuildTime+(5*3600L*1000)); // create a time-stamp 5h after the given build time local
187 this.queryScenarioTimestampDataPoints.setTimestamp(2, timestamp);
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 37 import java.sql.Timestamp;
227 public void setTimestamp(int parameterIndex, Timestamp theTimestamp,
231 public void setTimestamp(int parameterIndex, Timestamp theTimestamp)
505 public Timestamp getTimestamp(int columnIndex, Calendar cal)
510 public Timestamp getTimestamp(int columnIndex) throws SQLException {
514 public Timestamp getTimestamp(String columnName, Calendar cal)
519 public Timestamp getTimestamp(String columnName) throws SQLException {
754 public void updateTimestamp(int columnIndex, Timestamp x)
758 public void updateTimestamp(String columnName, Timestamp x)
1251 public void setTimestamp(String parameterName, Timestamp theTimestamp
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_sender_audio.cc 118 // The default timestamp rate is 8000 Hz, but other rates may be defined.
351 // we need to get the current timestamp to calc the diff
352 uint32_t oldTimeStamp = _rtpSender->Timestamp();
357 timestampOffset = uint16_t(_rtpSender->Timestamp() - oldTimeStamp);
448 "timestamp", _rtpSender->Timestamp(),
566 "timestamp", dtmfTimeStamp,
rtp_sender.h 44 virtual uint32_t Timestamp() const = 0;
117 void SetStartTimestamp(uint32_t timestamp, bool force);
209 // Current timestamp.
210 virtual uint32_t Timestamp() const OVERRIDE;
264 int SendPadData(int payload_type, uint32_t timestamp, int64_t capture_time_ms,
292 uint32_t timestamp, uint16_t sequence_number,
rtp_sender_video.cc 125 "timestamp", capture_timestamp,
163 "timestamp", capture_timestamp,
187 "timestamp", capture_timestamp,
481 "timestamp", _rtpSender.Timestamp());
rtp_receiver_impl.cc 220 last_received_timestamp_ != rtp_header.timestamp;
241 if (last_received_timestamp_ != rtp_header.timestamp) {
242 last_received_timestamp_ = rtp_header.timestamp;
255 bool RtpReceiverImpl::Timestamp(uint32_t* timestamp) const {
259 *timestamp = last_received_timestamp_;
  /external/chromium_org/third_party/webrtc/video_engine/
vie_sync_module.cc 29 if (!receiver.Timestamp(&stream->latest_timestamp))
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 264 public void setTimestamp(int parameterIndex, java.sql.Timestamp x)
477 public void setTimestamp(int parameterIndex, java.sql.Timestamp x,
582 public void setTimestamp(String parameterName, java.sql.Timestamp val)
633 public void setTimestamp(String parameterName, java.sql.Timestamp val,
688 public java.sql.Timestamp getTimestamp(String parameterName)
767 public java.sql.Timestamp getTimestamp(String parameterName, Calendar cal)
772 public java.sql.Timestamp getTimestamp(int parameterIndex, Calendar cal)
JDBCResultSet.java 352 public java.sql.Timestamp getTimestamp(int columnIndex)
357 private java.sql.Timestamp internalGetTimestamp(int columnIndex,
368 return new java.sql.Timestamp(SQLite.Database.long_from_julian(lastg));
370 return java.sql.Timestamp.valueOf(lastg);
374 return java.sql.Timestamp.valueOf(lastg);
376 return new java.sql.Timestamp(SQLite.Database.long_from_julian(lastg));
385 public java.sql.Timestamp getTimestamp(String columnName)
391 public java.sql.Timestamp getTimestamp(int columnIndex,
397 public java.sql.Timestamp getTimestamp(String columnName,
1108 public void updateTimestamp(int colIndex, java.sql.Timestamp t
    [all...]
  /external/chromium_org/media/base/
data_buffer_unittest.cc 64 TEST(DataBufferTest, Timestamp) {
70 EXPECT_TRUE(buffer->timestamp() == kZero);
73 EXPECT_TRUE(buffer->timestamp() == kTimestampA);
76 EXPECT_TRUE(buffer->timestamp() == kTimestampB);
  /external/stressapptest/src/
sattypes.h 51 inline const char* Timestamp() {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
types.py 357 self.cur.execute("create table test(d date, ts timestamp)")
371 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0)
391 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0, 500000)
398 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0, 510241)
dbapi.py 483 self.cur.execute("create table test(id integer primary key, name text, bin binary, ratio number, ts timestamp)")
644 ts = sqlite.Timestamp(2004, 10, 28, 12, 39, 35)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
types.py 357 self.cur.execute("create table test(d date, ts timestamp)")
371 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0)
391 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0, 500000)
398 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0, 510241)
dbapi.py 483 self.cur.execute("create table test(id integer primary key, name text, bin binary, ratio number, ts timestamp)")
644 ts = sqlite.Timestamp(2004, 10, 28, 12, 39, 35)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fltdefs.h 113 LARGE_INTEGER Timestamp;
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java 37 import java.sql.Timestamp;
61 + " dateVal DATE, " + " timeVal TIME, " + " TS TIMESTAMP, "
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
queryobj.c 506 *params = ctx->Const.QueryCounterBits.Timestamp;
757 ctx->Const.QueryCounterBits.Timestamp = 64;
  /external/mesa3d/src/mesa/main/
queryobj.c 506 *params = ctx->Const.QueryCounterBits.Timestamp;
757 ctx->Const.QueryCounterBits.Timestamp = 64;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_context.c 277 ctx->Const.QueryCounterBits.Timestamp = 36;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_context.c 277 ctx->Const.QueryCounterBits.Timestamp = 36;
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/testAPI/
test_api_audio.cc 235 uint32_t timestamp; local
236 EXPECT_TRUE(rtp_receiver2_->Timestamp(&timestamp));
237 EXPECT_EQ(test_timestamp, timestamp);
354 uint32_t timeStamp = 160;
358 EXPECT_EQ(0, module1->SendTelephoneEventOutband(i, timeStamp, 10));
360 timeStamp += 160; // Prepare for next packet.
366 for (;timeStamp <= 250 * 160; timeStamp += 160) {
368 timeStamp, -1, test, 4))
    [all...]
  /external/chromium_org/media/cdm/ppapi/
cdm_adapter.cc 86 input_buffer->timestamp = encrypted_block_info.tracking_info.timestamp;
843 decrypted_block_info.tracking_info.timestamp = decrypted_block->Timestamp();
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_ndis.c 178 UCHAR Timestamp[8];
895 r->tsf = WPA_GET_LE64(fixed->Timestamp);
    [all...]

Completed in 1498 milliseconds

12 3