Searched refs:spFileSystem (Results 1 – 4 of 4) sorted by relevance
| /developtools/smartperf_host/ide/test/trace/component/setting/ |
| D | SpFileSystem.test.ts | 18 let spFileSystem = new SpFileSystem(); variable 20 spFileSystem.startSamp = true; 21 expect(spFileSystem.startSamp).toBeTruthy(); 25 spFileSystem.startSamp = false; 26 expect(spFileSystem.startSamp).toBeFalsy(); 30 expect(spFileSystem.getSystemConfig()).toStrictEqual({ 37 expect(spFileSystem.unDisable()).toBeUndefined(); 41 expect(spFileSystem.disable()).toBeUndefined(); 45 spFileSystem.startRecord = true; 46 expect(spFileSystem.startRecord).toBeTruthy(); [all …]
|
| /developtools/smartperf_host/ide/test/trace/component/ |
| D | SpRecordTrace.test.ts | 272 spRecordTrace.spFileSystem.getSystemConfig = jest.fn(()=> ['12,gtr', '15,frehtr', '24,init']); 273 spRecordTrace.spFileSystem.startFileSystem = true; 274 spRecordTrace.spFileSystem.startVirtualMemory = true; 275 spRecordTrace.spFileSystem.startIo = true;
|
| /developtools/smartperf_host/ide/src/trace/component/ |
| D | SpRecordConfigModel.ts | 692 spFileSystem: SpFileSystem, 696 if (!spFileSystem!.startRecord) { 699 let systemConfig = spFileSystem!.getSystemConfig(); 702 if (spFileSystem?.startFileSystem) { 705 if (spFileSystem?.startVirtualMemory) { 708 if (spFileSystem?.startIo) {
|
| D | SpRecordTrace.ts | 98 private spFileSystem: SpFileSystem | undefined; property in SpRecordTrace 614 this.spFileSystem = new SpFileSystem(); 847 recordTrace.spFileSystem!.setAttribute('long_trace', ''); 888 … this.buildMenuItem('eBPF Config', 'file-config', this.spFileSystem!, this.eBPFConfigClickHandler), 1392 createSystemConfig(this.spFileSystem!, this.recordSetting!, request);
|