HomeSort by relevance Sort by last modified time
    Searched refs:Timestamp (Results 76 - 100 of 197) sorted by null

1 2 34 5 6 7 8

  /external/protobuf/python/google/protobuf/internal/
well_known_types_test.py 61 parsed_message = timestamp_pb2.Timestamp()
75 message = timestamp_pb2.Timestamp()
137 message = timestamp_pb2.Timestamp()
180 # For negative values, Timestamp will be rounded down.
237 message = timestamp_pb2.Timestamp()
269 message = timestamp_pb2.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...]
  /libcore/ojluni/src/main/java/java/sql/
ResultSet.java 412 * a <code>java.sql.Timestamp</code> object in the Java programming language.
421 java.sql.Timestamp getTimestamp(int columnIndex) throws SQLException;
    [all...]
  /device/google/cuttlefish_common/guest/hals/camera/
Exif.cpp 49 using Timestamp = time_t;
50 #define TIMESTAMP_TO_TM(timestamp, tm) gmtime_r(timestamp, tm)
53 using Timestamp = time64_t;
54 #define TIMESTAMP_TO_TM(timestamp, tm) gmtime64_r(timestamp, tm)
255 // Convert a UNIX epoch timestamp to a timestamp comprised of three floats for
257 static bool convertTimestampToTimeAndDate(int64_t timestamp,
260 Timestamp time = timestamp
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_sender_audio.cc 97 // The default timestamp rate is 8000 Hz, but other rates may be defined.
268 // we need to get the current timestamp to calc the diff
269 uint32_t oldTimeStamp = _rtpSender->Timestamp();
274 timestampOffset = uint16_t(_rtpSender->Timestamp() - oldTimeStamp);
357 TRACE_EVENT_ASYNC_END2("webrtc", "Audio", captureTimeStamp, "timestamp",
358 _rtpSender->Timestamp(), "seqnum",
454 "Audio::SendTelephoneEvent", "timestamp",
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/ManagedNetwork/
ManagedNetwork.h 50 EFI_TIME Timestamp;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
ManagedNetwork.h 78 /// Set to TRUE to timestamp all packets when they are received
93 EFI_TIME Timestamp;
  /external/webrtc/webrtc/video/
vie_sync_module.cc 26 if (!receiver.Timestamp(&stream->latest_timestamp))
  /frameworks/av/media/libaaudio/src/client/
AudioStreamInternal.h 167 SimpleDoubleBuffer<Timestamp> mAtomicTimestamp;
169 AtomicRequestor mNeedCatchUp; // Ask read() or write() to sync on first timestamp.
183 // Adjust timing model based on timestamp from service.
  /frameworks/av/services/oboeservice/
AAudioServiceEndpointPlay.cpp 134 // This timestamp represents the completion of data being read out of the
137 Timestamp timestamp(clientFramesRead, AudioClock::getNanoseconds());
138 streamShared->markTransferTime(timestamp);
AAudioServiceStreamShared.cpp 235 void AAudioServiceStreamShared::markTransferTime(Timestamp &timestamp) {
236 mAtomicTimestamp.write(timestamp);
239 // Get timestamp that was written by mixer or distributor.
242 // TODO Get presentation timestamp from the HAL
244 Timestamp timestamp = mAtomicTimestamp.read(); local
245 *positionFrames = timestamp.getPosition();
246 *timeNanos = timestamp.getNanoseconds();
253 // Get timestamp from lower level service
    [all...]
AAudioServiceEndpointShared.cpp 180 // Get timestamp that was written by the real-time service thread, eg. mixer.
184 Timestamp timestamp = mAtomicTimestamp.read(); local
185 *positionFrames = timestamp.getPosition();
186 *timeNanos = timestamp.getNanoseconds();
AAudioServiceStreamBase.h 290 SimpleDoubleBuffer<Timestamp> mAtomicTimestamp;
  /libcore/ojluni/src/main/java/sun/security/pkcs/
SignerInfo.java 42 import java.security.Timestamp;
54 import sun.security.timestamp.TimestampToken;
91 Timestamp timestamp; field in class:SignerInfo
543 * Returns the timestamp PKCS7 data unverified.
560 * Extracts a timestamp from a PKCS7 SignerInfo.
565 * timestamp was generated.
569 * @return A timestamp token or null if none is present.
579 public Timestamp getTimestamp()
583 if (timestamp != null || !hasTimestamp
    [all...]
  /system/extras/simpleperf/
record.h 253 virtual uint64_t Timestamp() const;
400 uint64_t Timestamp() const override;
519 uint64_t Timestamp() const override {
535 uint64_t Timestamp() const override {
572 // It sorts received records based on type and timestamp, and pops records
perf_clock.cpp 140 perf_time_in_ns = record.Timestamp();
  /device/google/contexthub/firmware/os/drivers/st_acc44/
st_acc44.c 243 uint64_t Timestamp;
481 mTask.Timestamp = sensorGetTime();
487 mTask.Timestamp = mTask.lastTime + deltaTime;
489 mTask.lastTime = mTask.Timestamp;
750 parseRawData(&xfer->txrxBuf[0], 1, mTask.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/clang/tools/libclang/
CXLoadedDiagnostic.cpp 228 unsigned Timestamp,
342 unsigned Timestamp,
349 TopDiags->FakeFiles.getVirtualFile(Name, Size, Timestamp);
  /external/stressapptest/src/
sattypes.h 51 inline const char* Timestamp() {
  /external/autotest/venv/lucifer/
handlers.py 209 span.startTime = types.Timestamp()
211 span.endTime = types.Timestamp()
  /device/generic/goldfish/camera/
Exif.cpp 41 using Timestamp = time_t;
42 #define TIMESTAMP_TO_TM(timestamp, tm) gmtime_r(timestamp, tm)
45 using Timestamp = time64_t;
46 #define TIMESTAMP_TO_TM(timestamp, tm) gmtime64_r(timestamp, tm)
264 // Convert a UNIX epoch timestamp to a timestamp comprised of three floats for
266 static bool convertTimestampToTimeAndDate(int64_t timestamp,
269 Timestamp time = timestamp
    [all...]
  /external/python/cpython2/Lib/sqlite3/test/
types.py 361 self.cur.execute("create table test(d date, ts timestamp)")
375 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0)
395 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0, 500000)
402 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0, 510241)
  /external/python/cpython3/Lib/sqlite3/test/
types.py 362 self.cur.execute("create table test(d date, ts timestamp)")
376 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0)
393 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0, 500000)
400 ts = sqlite.Timestamp(2004, 2, 14, 7, 15, 0, 510241)

Completed in 1170 milliseconds

1 2 34 5 6 7 8