Home
last modified time | relevance | path

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

/developtools/smartperf_host/ide/src/trace/component/trace/sheet/smaps/
DTabPaneSmapsStatistics.ts18 import { type Smaps, SmapsTreeObj, SmapsType, TYPE_STRING } from '../../../../bean/SmapsStruct';
229 private initTreeObj(): Map<SmapsType, SmapsTreeObj> {
230 let allTreeObjs: Map<SmapsType, SmapsTreeObj> = new Map<SmapsType, SmapsTreeObj>();
231 allTreeObjs.set(SmapsType.TYPE_CODE_SYS, new SmapsTreeObj('CODE_SYS', '', 'CODE_SYS'));
232 allTreeObjs.set(SmapsType.TYPE_CODE_APP, new SmapsTreeObj('CODE_APP', '', 'CODE_APP'));
233 allTreeObjs.set(SmapsType.TYPE_DATA_SYS, new SmapsTreeObj('DATA_SYS', '', 'DATA_SYS'));
234 allTreeObjs.set(SmapsType.TYPE_DATA_APP, new SmapsTreeObj('DATA_APP', '', 'DATA_APP'));
235 …allTreeObjs.set(SmapsType.TYPE_UNKNOWN_ANON, new SmapsTreeObj('UNKNOWN_ANON', '', 'UNKNOWN_ANON'));
236 allTreeObjs.set(SmapsType.TYPE_STACK, new SmapsTreeObj('STACK', '', 'STACK'));
237 allTreeObjs.set(SmapsType.TYPE_JS_HEAP, new SmapsTreeObj('JS_HEAP', '', 'JS_HEAP'));
[all …]
DTabPaneSmapsRecord.ts20 import { SmapsType } from '../../../../bean/SmapsStruct';
33 private typeId = SmapsType.TYPE_NATIVE_HEAP;
DTabPaneSmapsComparison.ts23 import { type SmapsType } from '../../../../bean/SmapsStruct'; alias
216 type: SmapsType;
230 type: SmapsType,
/developtools/smartperf_host/ide/src/trace/bean/
DSmapsStruct.ts21 type: SmapsType = 0;
72 export enum SmapsType { enum