Home | History | Annotate | Download | only in helpers

Lines Matching defs:timestamp

31     public final long timestamp;
47 * Construct a TestSensorEvent from {@link SensorEvent} data and a received timestamp.
50 * @param receivedTimestamp the timestamp when
56 timestamp = event.timestamp;
65 public TestSensorEvent(Sensor sensor, long timestamp, int accuracy, float[] values) {
66 this(sensor, timestamp, timestamp, accuracy, values);
72 public TestSensorEvent(Sensor sensor, long timestamp, long receivedTimestamp, int accuracy,
75 this.timestamp = timestamp;
84 "Timestamp=%sns, ReceivedTimestamp=%sns, Accuracy=%s, Values=%s",
85 this.timestamp,