Searched refs:PROCESS_MAP (Results 1 – 10 of 10) sorted by relevance
| /developtools/smartperf_host/ide/src/trace/component/trace/base/ |
| D | Utils.ts | 24 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/ |
| D | SpChartManager.ts | 202 Utils.PROCESS_MAP.clear(); 206 Utils.PROCESS_MAP.set(pt.id, pt.name);
|
| D | SpCpuChart.ts | 69 let p = Utils.PROCESS_MAP.get(it.processId!);
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/frequsage/ |
| D | TabPaneFreqUsage.ts | 62 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/ |
| D | TabPaneCpuByProcess.ts | 54 let process = Utils.PROCESS_MAP.get(e.pid);
|
| D | TabPaneCpuByThread.ts | 104 let process = Utils.PROCESS_MAP.get(e.pid);
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/process/ |
| D | TabPaneThreadUsage.ts | 106 let process = Utils.PROCESS_MAP.get(resultEl.pid);
|
| D | TabPaneThreadStates.ts | 169 let process = Utils.PROCESS_MAP.get(e.pid);
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/ |
| D | TabPaneCurrentSelection.ts | 724 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/ |
| D | SpSystemTrace.ts | 1627 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!);
|