HomeSort by relevance Sort by last modified time
    Searched defs:Timestamp (Results 1 - 25 of 39) sorted by null

1 2

  /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/chromium_org/tools/cygprofile/
mergetraces.py 83 timestamp = (timestamp_secs * 1000000) + timestamp_us
85 if (timestamp < last_timestamp):
87 + " " + str(last_timestamp_us) + " timestamp: "
117 def Timestamp(trace_entry):
135 Timestamp(tracemap[call]) > Timestamp(trace_entry)):
144 timestamp) and processes also have their code isolated (i.e. not interleaved).
227 merged_trace.sort(key=Timestamp)
  /libcore/luni/src/main/java/java/security/
Timestamp.java 25 * {@code Timestamp} represents a signed time stamp. {@code Timestamp} is
28 public final class Timestamp implements Serializable {
32 private Date timestamp; field in class:Timestamp
40 * Constructs a new instance of {@code Timestamp} with the specified {@code
41 * timestamp} and the given certificate path.
43 * @param timestamp
48 * if {@code timestamp} is {@code null} or if {@code
51 public Timestamp(Date timestamp, CertPath signerCertPath)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 39 Timestamp = datetime.datetime
48 return Timestamp(*time.localtime(ticks)[:6])
82 register_converter("timestamp", convert_timestamp)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 39 Timestamp = datetime.datetime
48 return Timestamp(*time.localtime(ticks)[:6])
82 register_converter("timestamp", convert_timestamp)
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 34 * Tests for <code>Timestamp</code> class fields and methods
47 new Timestamp(null, cpath);
53 new Timestamp(now, null);
64 Timestamp one = new Timestamp(now, cpath);
65 Timestamp two = new Timestamp(now, cpath);
73 Timestamp two1 = new Timestamp(new Date(9999), cpath);
79 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 25 import java.security.Timestamp;
34 * Tests for <code>Timestamp</code> class fields and methods
47 new Timestamp(null, cpath);
53 new Timestamp(now, null);
59 Timestamp timestamp = new Timestamp(now, cpath); local
60 assertEquals("not expected value", now, timestamp.getTimestamp());
61 assertEquals("not expected cert path", cpath, timestamp.getSignerCertPath());
68 Timestamp one = new Timestamp(now, cpath)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_receiver_impl.cc 209 last_received_timestamp_ != rtp_header.timestamp;
230 if (last_received_timestamp_ != rtp_header.timestamp) {
231 last_received_timestamp_ = rtp_header.timestamp;
244 bool RtpReceiverImpl::Timestamp(uint32_t* timestamp) const {
248 *timestamp = last_received_timestamp_;
rtp_sender.cc 506 uint32_t timestamp; local
509 timestamp = timestamp_;
512 timestamp +=
518 return SendPadData(timestamp, capture_time_ms, bytes);
521 int RTPSender::SendPadData(uint32_t timestamp,
568 timestamp,
823 "timestamp", rtp_header.timestamp,
    [all...]
  /external/stressapptest/src/
sattypes.h 51 inline const char* Timestamp() {
  /libcore/luni/src/main/java/java/sql/
Timestamp.java 27 * A Java representation of the SQL {@code TIMESTAMP} type. It provides the
28 * capability of representing the SQL {@code TIMESTAMP} nanosecond value, in
31 * The {@code Timestamp} class consists of a regular date/time value, where only
35 * The addition of the nanosecond value field to the {@code Timestamp} object
37 * it extends. Users should be aware that {@code Timestamp} objects are not
45 public class Timestamp extends Date {
49 // The nanoseconds time value of the Timestamp
56 * Returns a {@code Timestamp} corresponding to the time specified by the
60 * @deprecated Use the constructor {@link #Timestamp(long)} instead.
74 * which defines the nanosecond value of the timestamp specifie
472 Timestamp timestamp = new Timestamp(date.getTime()); local
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TimestampTest.java 20 import java.sql.Timestamp;
29 * JUnit Testcase for the java.sql.Timestamp class
34 static class MockTimestamp extends Timestamp {
139 Timestamp theTimestamp = new Timestamp(TIME_TEST1);
140 // The Timestamp should have been created
143 Timestamp mockTimestamp = new MockTimestamp(TIME_TEST1);
176 Timestamp theTimestamp = new Timestamp(element[0], element[1],
178 assertNotNull("Timestamp not generated: ", theTimestamp)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fltdefs.h 113 LARGE_INTEGER Timestamp;
ntddndis.h 777 UCHAR Timestamp[8];
    [all...]
iads.h 429 typedef class Timestamp Timestamp;
431 typedef struct Timestamp Timestamp;
762 ADS_TIMESTAMP Timestamp;
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_ndis.c 178 UCHAR Timestamp[8];
895 r->tsf = WPA_GET_LE64(fixed->Timestamp);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
mtypes.h     [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/5/
android.jar 

Completed in 625 milliseconds

1 2