Searched refs:TimestampType (Results 1 – 4 of 4) sorted by relevance
/development/tools/winscope/src/cross_tool/ |
D | cross_tool_protocol.ts | 39 TimestampType, 44 timestampType?: TimestampType; 202 private setRemoteToolTimestampTypeIfNeeded(type: TimestampType | undefined) { 212 remoteTool.timestampType = type ?? TimestampType.CLOCK_REALTIME; 222 case TimestampType.UNKNOWN: 224 case TimestampType.CLOCK_BOOTTIME: 226 case TimestampType.CLOCK_REALTIME: 247 case TimestampType.UNKNOWN: 249 case TimestampType.CLOCK_BOOTTIME: 259 case TimestampType.CLOCK_REALTIME:
|
D | messages.ts | 26 export enum TimestampType { enum 50 public timestampType?: TimestampType, 60 public timestampType?: TimestampType, 71 public timestampType?: TimestampType,
|
/development/tools/winscope/src/test/remote_tool_mock/ |
D | app_component.ts | 28 TimestampType, 118 TimestampType.CLOCK_REALTIME, 128 TimestampType.CLOCK_BOOTTIME, 186 TimestampType.CLOCK_BOOTTIME, 194 private sendTimestamp(value: bigint, type: TimestampType) { 255 case TimestampType.UNKNOWN: 257 case TimestampType.CLOCK_BOOTTIME: { 263 case TimestampType.CLOCK_REALTIME: {
|
/development/tools/winscope/src/common/ |
D | timestamp_converter.ts | 31 enum TimestampType { enum 98 private createdTimestampType: TimestampType | undefined; 192 this.createdTimestampType !== TimestampType.REAL || 201 if (this.createdTimestampType !== TimestampType.REAL) { 222 return this.createdTimestampType === TimestampType.REAL; 228 this.createdTimestampType === TimestampType.REAL, 230 this.createdTimestampType = TimestampType.REAL; 237 this.createdTimestampType === TimestampType.ELAPSED, 239 this.createdTimestampType = TimestampType.ELAPSED;
|