Home
last modified time | relevance | path

Searched refs:spAllocations (Results 1 – 4 of 4) sorted by relevance

/developtools/smartperf_host/ide/test/trace/component/setting/
DSpAllocations.test.ts81 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/
DSpRecordConfigModel.ts516 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 …]
DSpRecordTrace.ts91 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/
DSpRecordTrace.test.ts88 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(() => []);