Home
last modified time | relevance | path

Searched refs:spFileSystem (Results 1 – 3 of 3) sorted by relevance

/developtools/smartperf_host/ide/test/trace/component/setting/
DSpFileSystem.test.ts18 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/src/trace/component/
DSpRecordConfigModel.ts695 spFileSystem: SpFileSystem,
699 if (!spFileSystem!.startRecord) {
702 let systemConfig = spFileSystem!.getSystemConfig();
705 if (spFileSystem?.startFileSystem) {
708 if (spFileSystem?.startVirtualMemory) {
711 if (spFileSystem?.startIo) {
DSpRecordTrace.ts93 private spFileSystem: SpFileSystem | undefined; property in SpRecordTrace
557 this.spFileSystem = new SpFileSystem();
779 recordTrace.spFileSystem!.setAttribute('long_trace', '');
821 … this.buildMenuItem('eBPF Config', 'file-config', this.spFileSystem!, this.eBPFConfigClickHandler),
1311 createSystemConfig(this.spFileSystem!, this.recordSetting!, request);