Home
last modified time | relevance | path

Searched refs:timestampNs (Results 1 – 6 of 6) sorted by relevance

/development/tools/winscope/src/cross_tool/
Dcross_tool_protocol.ts81 const timestampNs = this.getTimestampNsForRemoteTool( constant
84 if (timestampNs === undefined) {
89 timestampNs,
172 message.timestampNs,
182 message.timestampNs,
195 message.timestampNs,
238 timestampNs: bigint | undefined,
242 if (timestampNs === undefined || timestampType === undefined) {
253 timestampNs,
262 return this.timestampConverter.makeTimestampFromRealNs(timestampNs);
Dmessages.ts49 public timestampNs?: bigint, property in MessageBugReport
59 public timestampNs: bigint, property in MessageTimestamp
70 public timestampNs?: bigint, property in MessageFiles
/development/tools/winscope/src/parsers/events/
Dparser_eventlog.ts100 const timestampNs = BigInt(rawTimestamp.replace('.', '')); constant
102 eventTimestamp: timestampNs,
/development/tools/winscope/src/common/
Dtimestamp_converter.ts288 private addTimezoneOffset(timezone: string, timestampNs: bigint): bigint {
289 const utcDate = new Date(Number(timestampNs / 1000000n));
310 timestampNs +
/development/tools/winscope/src/parsers/transitions/legacy/
Dtraces_parser_transitions.ts110 const timestampNs: bigint = dispatchTimestamp constant
113 return this.timestampConverter.makeTimestampFromRealNs(timestampNs);
/development/tools/winscope/src/test/remote_tool_mock/
Dapp_component.ts273 paragraph.textContent = message.timestampNs.toString();