Lines Matching refs:timestamp
79 async (bugreport: File, timestamp?: Timestamp) => {
80 await this.onRemoteBugreportReceived(bugreport, timestamp);
84 this.crossToolProtocol.setOnTimestampReceived(async (timestamp: Timestamp) => {
85 await this.onRemoteTimestampReceived(timestamp);
166 const timestamp = position.timestamp; constant
167 if (timestamp.getType() !== TimestampType.REAL) {
171 ` but Winscope wants to notify timestamp type ${timestamp.getType()}.`
176 this.crossToolProtocol.sendTimestamp(timestamp);
190 private async onRemoteBugreportReceived(bugreport: File, timestamp?: Timestamp) {
193 if (timestamp !== undefined) {
194 await this.onRemoteTimestampReceived(timestamp);
198 private async onRemoteTimestampReceived(timestamp: Timestamp) {
199 this.lastRemoteToolTimestampReceived = timestamp;
205 if (this.timelineData.getTimestampType() !== timestamp.getType()) {
208 ` Remote tool notified timestamp type ${timestamp.getType()},` +
214 const position = TracePosition.fromTimestamp(timestamp);