HomeSort by relevance Sort by last modified time
    Searched full:timestamp (Results 51 - 75 of 4884) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/snakeyaml/src/test/resources/recursive/
no-children-1-pretty.yaml 4 birthday: !!timestamp '1970-01-12T13:46:40Z',
13 birthday: !!timestamp '1973-03-03T09:46:40Z',
  /external/chromium-trace/catapult/tracing/tracing/model/
x_marker_annotation.html 16 function XMarkerAnnotation(timestamp) {
19 this.timestamp = timestamp;
24 return new XMarkerAnnotation(dict.args.timestamp);
34 timestamp: this.timestamp
counter_sample.html 29 function CounterSample(series, timestamp, value) {
32 this.timestamp_ = timestamp;
38 return sample.timestamp;
62 get timestamp() {
70 set timestamp(timestamp) {
71 this.timestamp_ = timestamp;
75 range.addValue(this.timestamp);
87 tr.v.Unit.byName.timeStampInMs.format(this.timestamp);
  /external/nist-sip/java/gov/nist/javax/sip/header/
TimeStamp.java 36 * TimeStamp SIP Header.
46 public class TimeStamp extends SIPHeader implements TimeStampHeader {
54 * timeStamp field
56 protected long timeStamp = -1;
70 public TimeStamp() {
71 super(TIMESTAMP);
76 if (timeStamp == -1 && timeStampFloat == -1)
78 else if (timeStamp != -1)
79 return Long.toString(timeStamp);
130 public void setTimeStamp(float timeStamp) throws InvalidArgumentException
    [all...]
  /frameworks/base/core/java/android/gesture/
GesturePoint.java 30 public final long timestamp; field in class:GesturePoint
35 timestamp = t;
42 // Read timestamp
43 final long timeStamp = in.readLong();
44 return new GesturePoint(x, y, timeStamp);
49 return new GesturePoint(x, y, timestamp);
  /libcore/ojluni/src/main/java/java/security/
CodeSigner.java 51 * The signature timestamp.
55 private Timestamp timestamp; field in class:CodeSigner
67 * @param timestamp A signature timestamp.
68 * If <code>null</code> then no timestamp was generated
73 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) {
78 this.timestamp = timestamp;
    [all...]
  /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...]
  /frameworks/base/media/java/android/media/midi/
MidiPortImpl.java 42 * size of message timestamp in bytes
47 * Data packet overhead is timestamp size plus packet type byte
61 * timestamp is message timestamp to pack
65 public static int packData(byte[] message, int offset, int size, long timestamp,
77 // followed by timestamp
79 dest[length++] = (byte)timestamp;
80 timestamp >>= 8;
115 // message length is total buffer length minus size of the timestamp
121 * unpacks timestamp from packed buffe
126 long timestamp = 0; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
SimpleDate.java 33 private long timestamp; field in class:SimpleDate
39 public SimpleDate(long timestamp) {
40 setTimestamp(timestamp);
45 public void setTimestamp(long timestamp) {
47 // TODO(georgescu): find a more efficient way to convert a timestamp to a date?
48 sCalendarInstance.setTimeInMillis(timestamp);
52 this.timestamp = timestamp;
54 DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp);
123 DateFormat.getDateInstance(DateFormat.SHORT).format(timestamp);
    [all...]
  /packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
VehiclePropValueUtil.java 34 public static VehiclePropValue createIntValue(int property, int value, long timestamp) {
35 return createBuilder(property, VehicleValueType.VEHICLE_VALUE_TYPE_INT32, timestamp).
41 long timestamp) {
44 timestamp);
51 public static VehiclePropValue createFloatValue(int property, float value, long timestamp) {
52 return createBuilder(property, VehicleValueType.VEHICLE_VALUE_TYPE_FLOAT, timestamp).
58 long timestamp) {
61 timestamp);
68 public static VehiclePropValue createLongValue(int property, long value, long timestamp) {
69 return createBuilder(property, VehicleValueType.VEHICLE_VALUE_TYPE_INT64, timestamp)
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
generic_decoder.cc 51 "timestamp", decodedImage.timestamp());
58 frameInfo = _timestampMap.Pop(decodedImage.timestamp());
73 _timing->StopDecodeTimer(decodedImage.timestamp(), decode_time_ms, now_ms,
110 void VCMDecodedFrameCallback::Map(uint32_t timestamp,
113 _timestampMap.Add(timestamp, frameInfo);
116 int32_t VCMDecodedFrameCallback::Pop(uint32_t timestamp) {
118 if (_timestampMap.Pop(timestamp) == NULL) {
144 TRACE_EVENT1("webrtc", "VCMGenericDecoder::Decode", "timestamp",
149 _callback->Map(frame.TimeStamp(), &_frameInfos[_nextFrameInfoIdx])
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
results_holder.h 62 void inv_store_gaming_quaternion(const long *quat, inv_time_t timestamp);
63 void inv_store_accel_quaternion(const long *quat, inv_time_t timestamp);
64 void inv_store_nav_quaternion(const float *quat, inv_time_t timestamp);
65 void inv_store_game_quaternion(const float *quat, inv_time_t timestamp);
66 void inv_store_geomag_quaternion(const float *quat, inv_time_t timestamp);
87 inv_error_t inv_get_6axis_quaternion(long *data, inv_time_t *timestamp);
90 inv_error_t inv_get_6axis_quaternion_float(float *data, inv_time_t *timestamp);
91 inv_error_t inv_get_geomagnetic_quaternion_float(float *data, inv_time_t *timestamp);
96 void inv_get_quaternion_set(long *data, int *accuracy, inv_time_t *timestamp);
98 inv_error_t inv_get_geomagnetic_quaternion(long *data, inv_time_t *timestamp);
    [all...]
  /frameworks/av/include/media/
AudioTimestamp.h 41 LOCATION_CLIENT, // timestamp of last read frame from client-server track buffer.
42 LOCATION_SERVER, // timestamp of newest frame from client-server track buffer.
43 LOCATION_KERNEL, // timestamp of newest frame in the kernel (alsa) buffer.
45 // Historical data: info when the kernel timestamp was OK (prior to the newest frame).
46 // This may be useful when the newest frame kernel timestamp is unavailable.
48 LOCATION_SERVER_LASTKERNELOK, // timestamp of server the prior time kernel timestamp OK.
49 LOCATION_KERNEL_LASTKERNELOK, // timestamp of kernel the prior time kernel timestamp OK.
76 // timestamp was taken. This may vary due to suspend tim
    [all...]
  /external/snakeyaml/src/test/java/examples/jodatime/
JodaTimeExampleTest.java 34 private static final long timestamp = 1000000000000L; field in class:JodaTimeExampleTest
37 DateTime time = new DateTime(timestamp, DateTimeZone.UTC);
40 String date = new Yaml().dump(new Date(timestamp));
48 assertEquals(new DateTime(timestamp, DateTimeZone.UTC), time);
57 String timestamp = yaml.dump(someDate); local
58 assertEquals("0009-02-22T23:40:28Z\n", timestamp);
59 // System.out.println(timestamp);
60 Object o = yaml.load(timestamp);
72 if (nnode.getTag().equals("tag:yaml.org,2002:timestamp")) {
73 Construct dateConstructor = yamlConstructors.get(Tag.TIMESTAMP);
    [all...]
  /external/tcpdump/tests/
babel_rtt.out 2 Hello seqno 58805 interval 4.00s sub-timestamp 2222.954827s
4 Hello seqno 15585 interval 4.00s sub-timestamp 94.665527s
5 IHU fe80::5054:ff:fe85:5da9 txcost 96 interval 12.00s sub-timestamp 2222.954827s|91.378052s
7 Hello seqno 58806 interval 4.00s sub-timestamp 2226.449854s
8 IHU fe80::5054:ff:fe23:4567 txcost 96 interval 12.00s sub-timestamp 90.173759s|2222.137366s
10 Hello seqno 58807 interval 4.00s sub-timestamp 2229.725353s
12 Hello seqno 15586 interval 4.00s sub-timestamp 98.956759s
14 Hello seqno 15587 interval 4.00s sub-timestamp 102.558329s
16 Hello seqno 58808 interval 4.00s sub-timestamp 2234.612063s
18 Hello seqno 15588 interval 4.00s sub-timestamp 106.492002
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
packet.h 39 // Comparison operators. Establish a packet ordering based on (1) timestamp,
41 // Timestamp and sequence numbers are compared taking wrap-around into
42 // account. If both timestamp and sequence numbers are identical and one of
44 // two regular packets with the same sequence number and timestamp a primary
47 return (this->header.timestamp == rhs.header.timestamp &&
54 if (this->header.timestamp == rhs.header.timestamp) {
56 // Timestamp and sequence numbers are identical. A sync packet should
63 // given same RTP sequence number and timestamp, guarantees that
    [all...]
dtmf_buffer_unittest.cc 52 && a.timestamp == b.timestamp
67 uint32_t timestamp = 0x12345678; local
72 DtmfBuffer::ParseEvent(timestamp, payload_ptr, sizeof(payload),
77 EXPECT_EQ(timestamp, event.timestamp);
81 DtmfBuffer::ParseEvent(timestamp, payload_ptr, 3, &event));
89 uint32_t timestamp = 0x12345678; local
90 DtmfEvent event(timestamp, event_no, volume, duration, end_bit);
97 EXPECT_FALSE(buffer.GetEvent(timestamp - 10, &out_event))
124 uint32_t timestamp = 0x12345678; local
150 uint32_t timestamp = 0x12345678 + 80; local
194 uint32_t timestamp = 0x12345678; local
271 uint32_t timestamp = 0x12345678; local
    [all...]
timestamp_scaler.h 23 // This class scales timestamps for codecs that need timestamp scaling.
24 // This is done for codecs where one RTP timestamp does not correspond to
41 // Scale the timestamp in |packet| from external to internal.
44 // Scale the timestamp for all packets in |packet_list| from external to
53 // Scales back to external timestamp. This is the inverse of ToInternal().
nack_unittest.cc 62 uint32_t timestamp = 0; local
66 nack->UpdateLastReceivedPacket(seq_num, timestamp);
69 timestamp += kTimestampIncrement;
80 uint32_t timestamp = 0; local
83 nack->UpdateLastReceivedPacket(seq_num, timestamp);
92 timestamp + num_late_packets * kTimestampIncrement);
116 uint32_t timestamp = 0; local
119 nack->UpdateLastReceivedPacket(seq_num, timestamp);
124 timestamp += kTimestampIncrement * (kNumAllLostPackets + 1);
128 nack->UpdateLastReceivedPacket(seq_num, timestamp);
164 uint32_t timestamp = 0; local
236 uint32_t timestamp = timestamp_lost_packets[0] - 2 * kTimestampIncrement; local
370 uint32_t timestamp = 0x12345678; local
393 uint32_t timestamp = 0x87654321; local
460 uint32_t timestamp = 0x87654321; local
    [all...]
  /frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
MidiBtleTimeTracker.java 38 private long mPreviousResult; // To prevent retrograde timestamp
47 * @param timestamp
51 * @return nanoseconds corresponding to the timestamp
53 public long convertTimestampToNanotime(int timestamp, long now) {
54 long deltaMillis = timestamp - mPreviousTimestamp;
55 // will be negative when timestamp wraps
83 // Timestamp should not be older than our window time.
91 // prevent retrograde timestamp
96 mPreviousTimestamp = timestamp;
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/metadatasynchronizer/
MetadataPoolImpl.java 55 private SettableFuture<TotalCaptureResultProxy> getOrCreateFuture(long timestamp) {
58 if (!mMetadataFutures.containsKey(timestamp)) {
59 mMetadataFutures.put(timestamp, SettableFuture.<TotalCaptureResultProxy> create());
62 metadataFuture = mMetadataFutures.get(timestamp);
69 public ListenableFuture<TotalCaptureResultProxy> removeMetadataFuture(final long timestamp) {
70 ListenableFuture<TotalCaptureResultProxy> future = getOrCreateFuture(timestamp);
76 mMetadataFutures.remove(timestamp);
90 long timestamp = metadata.get(CaptureResult.SENSOR_TIMESTAMP); local
91 SettableFuture<TotalCaptureResultProxy> future = getOrCreateFuture(timestamp);
  /external/webrtc/webrtc/audio/
audio_sink.h 34 uint32_t timestamp)
39 timestamp(timestamp) {}
45 uint32_t timestamp; // The RTP timestamp of the first sample. member in struct:webrtc::AudioSinkInterface::Data
  /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/webservd/webservd/
log_manager_unittest.cc 34 void Log(const base::Time& timestamp, const std::string& entry) override {
48 // Adds a test log entry to the file corresponding to the give |timestamp|.
49 void LogEntry(const base::Time& timestamp) {
55 timestamp, reinterpret_cast<const sockaddr*>(&client_addr), "POST",
81 base::Time timestamp = base::Time::Now(); local
82 LogEntry(timestamp);
86 time_t time = timestamp.ToTimeT();
100 base::Time timestamp = base::Time::FromTimeT(mktime(&date)); local
102 LogEntry(timestamp);
103 LogEntry(timestamp);
126 base::Time timestamp = base::Time::FromTimeT(mktime(&date)); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageLog.java 53 private long timeStamp;
74 && otherLog.timeStamp == timeStamp;
86 String timeStamp,
98 long ts = Long.parseLong(timeStamp);
101 this.timeStamp = ts;
104 "Bad number format " + timeStamp);
119 long timeStamp,
130 if (timeStamp < 0)
132 this.timeStamp = timeStamp
    [all...]

Completed in 621 milliseconds

1 23 4 5 6 7 8 91011>>