Home
last modified time | relevance | path

Searched refs:appProcess (Results 1 – 6 of 6) sorted by relevance

/developtools/smartperf_host/ide/test/trace/component/
DSpRecordTrace.test.ts55 spRecordTrace.spAllocations.appProcess = jest.fn(() => '');
56 spRecordTrace.spAllocations.appProcess.indexOf = jest.fn(() => '');
57 spRecordTrace.spAllocations.appProcess.lastIndexOf = jest.fn(() => 1);
58 spRecordTrace.spAllocations.appProcess.slice = jest.fn(() => 1);
/developtools/smartperf_host/ide/src/trace/component/
DSpRecordTrace.ts1231 if (this.spAllocations!.appProcess != '') {
1683 let appProcess = this.spAllocations!.appProcess; variable
1689 processName = appProcess;
1691 if (appProcess.indexOf('(') != -1) {
1692 processId = appProcess.slice(appProcess.lastIndexOf('(') + 1, appProcess.lastIndexOf(')'));
1694 processId = appProcess;
1699 processName = appProcess;
/developtools/profiler/host/smartperf/ide/src/trace/component/
DSpRecordTrace.ts1230 if (this.spAllocations!.appProcess != '') {
1682 let appProcess = this.spAllocations!.appProcess; variable
1687 if (appProcess.indexOf('(') != -1) {
1688 processId = appProcess.slice(appProcess.lastIndexOf('(') + 1, appProcess.lastIndexOf(')'));
1690 processId = appProcess;
1695 processName = appProcess;
/developtools/smartperf_host/ide/test/trace/component/setting/
DSpAllocations.test.ts86 expect(spAllocations.appProcess).toBe('3');
/developtools/smartperf_host/ide/src/trace/component/setting/
DSpAllocations.ts44 get appProcess(): string { method in SpAllocations
/developtools/profiler/host/smartperf/ide/src/trace/component/setting/
DSpAllocations.ts43 get appProcess(): string { method in SpAllocations