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

1 2

  /system/connectivity/shill/net/
shill_time.h 31 // Timestamp encapsulates a |monotonic| and a |boottime| clock that can be used
37 struct SHILL_EXPORT Timestamp {
38 Timestamp() : monotonic{} {}
39 Timestamp(const struct timeval& in_monotonic,
74 virtual Timestamp GetNow();
  /libcore/ojluni/src/main/java/java/security/
Timestamp.java 36 * This class encapsulates information about a signed timestamp.
38 * It includes the timestamp's date and time as well as information about the
39 * Timestamping Authority (TSA) which generated and signed the timestamp.
45 public final class Timestamp implements Serializable {
50 * The timestamp's date and time
54 private Date timestamp; field in class:Timestamp
64 * Hash code for this timestamp.
69 * Constructs a Timestamp.
71 * @param timestamp is the timestamp's date and time. It must not be null
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/
dbapi2.py 39 Timestamp = datetime.datetime
48 return Timestamp(*time.localtime(ticks)[:6])
82 register_converter("timestamp", convert_timestamp)
  /prebuilts/gdb/linux-x86/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/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)
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
timestamp.pb.h 2 // source: google/protobuf/timestamp.proto
40 class Timestamp;
44 class LIBPROTOBUF_EXPORT Timestamp : public ::google::protobuf::Message {
46 Timestamp();
47 virtual ~Timestamp();
49 Timestamp(const Timestamp& from);
51 inline Timestamp& operator=(const Timestamp& from) {
61 static const Timestamp& default_instance()
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
time_util.h 44 #include <google/protobuf/timestamp.pb.h>
51 typedef google::protobuf::Timestamp Timestamp;
55 // The min/max Timestamp/Duration values we support.
64 // Converts Timestamp to/from RFC 3339 date string format.
69 // Note that Timestamp can only represent time from
71 // a Timestamp outside of this range is undefined behavior.
79 static string ToString(const Timestamp& timestamp);
80 static bool FromString(const string& value, Timestamp* timestamp)
    [all...]
  /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...]
  /external/llvm/tools/dsymutil/
DebugMap.cpp 24 sys::TimeValue Timestamp)
25 : Filename(ObjectFilename), Timestamp(Timestamp) {}
63 sys::TimeValue Timestamp) {
64 Objects.emplace_back(new DebugMapObject(ObjectFilePath, Timestamp));
127 YamlDMO(IO &io) { Timestamp = 0; }
132 sys::TimeValue::SecondsType Timestamp;
148 io.mapOptional("timestamp", Norm->Timestamp);
202 Timestamp = Obj.getTimestamp().toEpochTime()
    [all...]
DebugMap.h 96 sys::TimeValue Timestamp);
148 sys::TimeValue getTimestamp() const { return Timestamp; }
161 DebugMapObject(StringRef ObjectFilename, sys::TimeValue Timestamp);
164 sys::TimeValue Timestamp;
179 std::swap(Timestamp, RHS.Timestamp);
186 Timestamp = std::move(RHS.Timestamp);
MachODebugMapParser.cpp 68 void switchToNewDebugMapObject(StringRef Filename, sys::TimeValue Timestamp);
114 sys::TimeValue Timestamp) {
121 CurrentObjectHolder.GetFilesAs<MachOObjectFile>(Path, Timestamp);
135 CurrentDebugMapObject = &Result->addDebugMapObject(Path, Timestamp);
350 sys::TimeValue Timestamp;
351 Timestamp.fromEpochTime(Value);
352 return switchToNewDebugMapObject(Name, Timestamp);
  /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/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
Tag.java 21 import java.sql.Timestamp;
41 public static final Tag TIMESTAMP = new Tag(PREFIX + "timestamp");
65 timestampSet.add(Timestamp.class);
66 COMPATIBILITY_MAP.put(TIMESTAMP, timestampSet);
142 * (!!int, !!float, !!timestamp etc)
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_receiver_impl.cc 195 last_received_timestamp_ != rtp_header.timestamp;
216 if (last_received_timestamp_ != rtp_header.timestamp) {
217 last_received_timestamp_ = rtp_header.timestamp;
230 bool RtpReceiverImpl::Timestamp(uint32_t* timestamp) const {
234 *timestamp = last_received_timestamp_;
rtp_sender.cc 605 uint32_t timestamp,
628 timestamp = timestamp_;
646 // Only change change the timestamp of padding packets sent over RTX.
648 // frame (and therefore the same timestamp).
650 timestamp +=
665 CreateRtpHeader(padding_packet, payload_type, ssrc, false, timestamp,
923 "timestamp", rtp_header.timestamp, "seqnum", rtp_header.sequenceNumber);
    [all...]
  /libcore/ojluni/src/main/java/java/sql/
Timestamp.java 32 * the JDBC API to identify this as an SQL <code>TIMESTAMP</code> value.
34 * to hold the SQL <code>TIMESTAMP</code> fractional seconds value, by allowing
36 * A Timestamp also provides formatting and
37 * parsing operations to support the JDBC escape syntax for timestamp values.
39 * <p>The precision of a Timestamp object is calculated to be either:
43 * of characters in the yyyy-mm-dd hh:mm:ss.[fff...] and <code>s</code> represents the scale of the given Timestamp,
50 * separate. The <code>Timestamp.equals(Object)</code> method never returns
52 * that isn't an instance of <code>java.sql.Timestamp</code>,
54 * As a result, the <code>Timestamp.equals(Object)</code>
61 * Due to the differences between the <code>Timestamp</code> clas
    [all...]
  /system/extras/simpleperf/
record.cpp 183 uint64_t Record::Timestamp() const {
530 uint64_t SampleRecord::Timestamp() const {
694 uint64_t time = record->Timestamp();
695 uint64_t other_time = other.record->Timestamp();
733 last_time_ = std::max(last_time_, r->Timestamp());
751 if (r->Timestamp() + min_time_diff_in_ns_ > last_time_) {
  /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 {
137 Timestamp theTimestamp = new Timestamp(TIME_TEST1);
138 // The Timestamp should have been created
141 Timestamp mockTimestamp = new MockTimestamp(TIME_TEST1);
174 Timestamp theTimestamp = new Timestamp(element[0], element[1],
176 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 179 UCHAR Timestamp[8];
883 r->tsf = WPA_GET_LE64(fixed->Timestamp);
    [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h     [all...]
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0-beta-2/
protobuf-java-3.0.0-beta-2.jar 

Completed in 1306 milliseconds

1 2