Home
last modified time | relevance | path

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

/development/tools/winscope/src/parsers/transitions/operations/
Dupdate_abort_time_nodes.ts23 const wmDataNode = value.getChildByName('wmData'); constant
26 const existingWmAbortTime = wmDataNode?.getChildByName('wmAbortTimeNs');
27 if (wmDataNode && existingWmAbortTime) {
29 wmDataNode.id,
32 wmDataNode.addOrReplaceChild(newAbortTimeNode);
33 wmDataNode.removeChild(existingWmAbortTime.id);
Dadd_duration.ts29 const wmDataNode = assertDefined(value.getChildByName('wmData')); constant
31 const sendTime: Timestamp | null | undefined = wmDataNode
34 const finishTime: Timestamp | null | undefined = wmDataNode
Dadd_status.ts26 const wmDataNode = assertDefined(value.getChildByName('wmData')); constant
30 wmDataNode.getChildByName('abortTimeNs')?.getValue()?.getValueNs() > 0n;
54 wmDataNode.getChildByName('finishTimeNs')?.getValue()?.getValueNs() >
/development/tools/winscope/src/parsers/transitions/perfetto/
Dparser_transitions_test.ts57 const wmDataNode = assertDefined(entry.getChildByName('wmData')); constant
62 wmDataNode.getChildByName('createTimeNs')?.formattedValue(),
64 expect(wmDataNode.getChildByName('sendTimeNs')?.formattedValue()).toEqual(
68 wmDataNode.getChildByName('finishTimeNs')?.formattedValue(),
76 wmDataNode.getChildByName('startingWindowRemoveTimeNs'),
81 wmDataNode.getChildByName('startTransactionId'),
86 wmDataNode.getChildByName('finishTransactionId'),
90 assertDefined(wmDataNode.getChildByName('type')).formattedValue(),
94 wmDataNode.getChildByName('targets'),
/development/tools/winscope/src/parsers/transitions/
Dparser_transitions_utils.ts133 const wmDataNode = assertDefined(tree.getChildByName('wmData')); constant
135 wmDataNode,
137 ParserTransitionsUtils.WM_ADD_DEFAULTS_OPERATION.apply(wmDataNode);
147 ).apply(wmDataNode);
/development/tools/winscope/src/viewers/viewer_transitions/
Dpresenter.ts161 const wmDataNode = assertDefined(transitionNode.getChildByName('wmData')); constant
168 type: wmDataNode.getChildByName('type')?.formattedValue() ?? 'NONE',
169 sendTime: wmDataNode.getChildByName('sendTimeNs'),