Home
last modified time | relevance | path

Searched refs:realToBootTimeOffsetNs (Results 1 – 14 of 14) sorted by relevance

/development/tools/winscope/src/parsers/transitions/legacy/
Dparser_transitions_wm.ts35 private realToBootTimeOffsetNs: bigint | undefined; property in ParserTransitionsWm
42 return this.realToBootTimeOffsetNs;
64 this.realToBootTimeOffsetNs = timeOffset !== 0n ? timeOffset : undefined;
93 if (this.realToBootTimeOffsetNs === undefined) {
104 realToBootTimeOffsetNs: this.realToBootTimeOffsetNs,
Dparser_transitions_shell.ts35 private realToBootTimeOffsetNs: bigint | undefined; property in ParserTransitionsShell
43 return this.realToBootTimeOffsetNs;
59 this.realToBootTimeOffsetNs = timeOffset !== 0n ? timeOffset : undefined;
102 if (this.realToBootTimeOffsetNs === undefined) {
115 realToBootTimeOffsetNs: this.realToBootTimeOffsetNs,
/development/tools/winscope/src/common/time/
Dtimestamp_converter.ts128 private realToBootTimeOffsetNs?: bigint,
155 if (this.realToBootTimeOffsetNs !== undefined) {
158 this.realToBootTimeOffsetNs = ns;
173 if (this.realToBootTimeOffsetNs !== undefined) {
174 return this.makeRealTimestamp(valueNs + this.realToBootTimeOffsetNs);
218 this.realToBootTimeOffsetNs === undefined
222 return timestamp.getValueNs() - this.realToBootTimeOffsetNs;
241 this.realToBootTimeOffsetNs = undefined;
/development/tools/winscope/src/parsers/input_method/legacy/
Dparser_input_method_manager_service.ts55 private realToBootTimeOffsetNs: bigint | undefined; property in ParserInputMethodManagerService
66 return this.realToBootTimeOffsetNs;
81 this.realToBootTimeOffsetNs = timeOffset !== 0n ? timeOffset : undefined;
Dparser_input_method_clients.ts54 private realToBootTimeOffsetNs: bigint | undefined; property in ParserInputMethodClients
65 return this.realToBootTimeOffsetNs;
80 this.realToBootTimeOffsetNs = timeOffset !== 0n ? timeOffset : undefined;
Dparser_input_method_service.ts55 private realToBootTimeOffsetNs: bigint | undefined; property in ParserInputMethodService
66 return this.realToBootTimeOffsetNs;
81 this.realToBootTimeOffsetNs = timeOffset !== 0n ? timeOffset : undefined;
/development/tools/winscope/src/parsers/transitions/
Dentry_properties_tree_factory.ts47 realToBootTimeOffsetNs: bigint | undefined; property
127 if (info.realToBootTimeOffsetNs !== undefined) {
130 info.realToBootTimeOffsetNs,
190 if (info.realToBootTimeOffsetNs !== undefined) {
193 info.realToBootTimeOffsetNs,
/development/tools/winscope/src/parsers/window_manager/legacy/
Dparser_window_manager.ts53 private realToBootTimeOffsetNs: bigint | undefined; property in ParserWindowManager
64 return this.realToBootTimeOffsetNs;
78 this.realToBootTimeOffsetNs = timeOffset !== 0n ? timeOffset : undefined;
/development/tools/winscope/src/parsers/view_capture/legacy/
Dparser_view_capture.ts47 const realToBootTimeOffsetNs = BigInt( constant
57 realToBootTimeOffsetNs,
Dparser_view_capture_window.ts90 private readonly realToBootTimeOffsetNs: bigint,
118 return this.realToBootTimeOffsetNs;
/development/tools/winscope/src/parsers/screen_recording/
Dparser_screen_recording.ts36 private realToBootTimeOffsetNs: bigint | undefined; property in ParserScreenRecording
63 return this.realToBootTimeOffsetNs;
118 this.realToBootTimeOffsetNs = timeOffsetNs;
227 this.realToBootTimeOffsetNs = metadata.realToElapsedTimeOffsetNanos;
/development/tools/winscope/src/parsers/perfetto/
Dabstract_parser.ts35 protected realToBootTimeOffsetNs?: bigint;
84 this.realToBootTimeOffsetNs = await this.queryRealToBootTimeOffset(
127 return this.realToBootTimeOffsetNs;
/development/tools/winscope/src/parsers/protolog/legacy/
Dparser_protolog.ts41 private realToBootTimeOffsetNs: bigint | undefined; property in ParserProtoLog
56 return this.realToBootTimeOffsetNs;
82 this.realToBootTimeOffsetNs =
/development/tools/winscope/src/parsers/transitions/perfetto/
Dparser_transitions.ts110 realToBootTimeOffsetNs: undefined, constant