Home
last modified time | relevance | path

Searched refs:PROCESS_MAP (Results 1 – 10 of 10) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/trace/base/
DUtils.ts24 static PROCESS_MAP: Map<number, string> = new Map<number, string>(); property in Utils
69 Utils.PROCESS_MAP.clear();
98 let process = Utils.PROCESS_MAP.get(parseInt(pid)) || 'Process';
112 let process = Utils.PROCESS_MAP.get(parseInt(pid)) || 'Process';
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpChartManager.ts202 Utils.PROCESS_MAP.clear();
206 Utils.PROCESS_MAP.set(pt.id, pt.name);
DSpCpuChart.ts69 let p = Utils.PROCESS_MAP.get(it.processId!);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/frequsage/
DTabPaneFreqUsage.ts62 pidArr.push(new TabPaneFreqUsageConfig(Utils.PROCESS_MAP.get(i) === null ? 'Process ' + i
63 … : Utils.PROCESS_MAP.get(i) + ' ' + i, '', i, '', 0, '', '', 0, '', 0, 'process', -1, []));
159 … e.process = Utils.PROCESS_MAP.get(e.pid) === null ? '[NULL]' : Utils.PROCESS_MAP.get(e.pid)!;
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/cpu/
DTabPaneCpuByProcess.ts54 let process = Utils.PROCESS_MAP.get(e.pid);
DTabPaneCpuByThread.ts104 let process = Utils.PROCESS_MAP.get(e.pid);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/process/
DTabPaneThreadUsage.ts106 let process = Utils.PROCESS_MAP.get(resultEl.pid);
DTabPaneThreadStates.ts169 let process = Utils.PROCESS_MAP.get(e.pid);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/
DTabPaneCurrentSelection.ts724 let processName = Utils.PROCESS_MAP.get(data.pid!);
1275 wb.process = Utils.PROCESS_MAP.get(wb.pid!) || 'Process';
1300 wb.process = Utils.PROCESS_MAP.get(wb.pid!) || 'Process';
/developtools/smartperf_host/ide/src/trace/component/
DSpSystemTrace.ts1627 for (let key of Utils.PROCESS_MAP.keys()) {
1628 if (`${key}`.includes(query) || (Utils.PROCESS_MAP.get(key) || '').includes(query)) {
1791 let p = Utils.PROCESS_MAP.get(it.processId!);