Searched refs:spAllocations (Results 1 – 4 of 4) sorted by relevance
| /developtools/smartperf_host/ide/test/trace/component/setting/ |
| D | SpAllocations.test.ts | 81 let spAllocations = document.querySelector('#sp') as SpAllocations; variable 82 expect(spAllocations.appProcess).toBe(''); 86 let spAllocations = document.querySelector('#sp') as SpAllocations; variable 87 expect(spAllocations.fp_unwind).toBeTruthy(); 90 let spAllocations = document.querySelector('#sp') as SpAllocations; variable 91 expect(spAllocations.record_accurately).toBeTruthy(); 94 let spAllocations = document.querySelector('#sp') as SpAllocations; variable 95 expect(spAllocations.offline_symbolization).toBeTruthy(); 98 let spAllocations = document.querySelector('#sp') as SpAllocations; variable 99 expect(spAllocations.record_statistics).toBeTruthy(); [all …]
|
| /developtools/smartperf_host/ide/src/trace/component/ |
| D | SpRecordConfigModel.ts | 516 spAllocations: SpAllocations, 520 if (spAllocations!.appProcess !== '' && spAllocations!.startSamp) { 521 let nativeConfig = initNativePluginConfig(spAllocations, selectVersion); 525 nativeConfig.recordAccurately = spAllocations!.record_accurately; 526 nativeConfig.offlineSymbolization = spAllocations!.offline_symbolization; 527 if (spAllocations!.record_statistics) { 528 nativeConfig.statisticsInterval = spAllocations!.statistics_interval; 530 nativeConfig.startupMode = spAllocations!.startup_mode; 531 if (spAllocations!.response_lib_mode) { 532 nativeConfig.responseLibraryMode = spAllocations!.response_lib_mode; [all …]
|
| D | SpRecordTrace.ts | 91 private spAllocations: SpAllocations | undefined; property in SpRecordTrace 381 this.spAllocations?.addEventListener('addProbe', this.recordAddProbeEvent); 397 this.spAllocations?.removeEventListener('addProbe', this.recordAddProbeEvent); 508 this.spAllocations!.startup_mode = false; 555 this.spAllocations = new SpAllocations(); 585 …let divConfigs = this.spAllocations?.shadowRoot?.querySelectorAll<HTMLDivElement>('.version-contro… 750 …let startNativeSwitch = recordTrace.spAllocations?.shadowRoot?.getElementById('switch-disabled') a… 770 …let divConfigs = recordTrace.spAllocations?.shadowRoot?.querySelectorAll<HTMLDivElement>('.version… 819 …this.buildMenuItem('Native Memory', 'externaltools', this.spAllocations!, this.nativeMemoryClickHa… 1309 …createNativePluginConfig(reportingFrequency, this.spAllocations!, SpRecordTrace.selectVersion, req…
|
| /developtools/smartperf_host/ide/test/trace/component/ |
| D | SpRecordTrace.test.ts | 88 spRecordTrace.spAllocations = jest.fn(() => undefined); 89 spRecordTrace.spAllocations.appProcess = jest.fn(() => ''); 90 spRecordTrace.spAllocations.appProcess.indexOf = jest.fn(() => ''); 91 spRecordTrace.spAllocations.appProcess.lastIndexOf = jest.fn(() => 1); 92 spRecordTrace.spAllocations.appProcess.slice = jest.fn(() => 1); 93 spRecordTrace.spAllocations.expandPids = jest.fn(() => []);
|