Home
last modified time | relevance | path

Searched refs:fileStruct (Results 1 – 5 of 5) sorted by relevance

/developtools/smartperf_host/ide/src/js-heap/
DLoadDatabase.ts44 let fileStruct = new FileStruct(); variable
45 fileStruct.id = row.id;
46 fileStruct.name = row.name;
47 fileStruct.startTs = row.startTs;
48 fileStruct.endTs = row.endTs;
49 fileStruct.pid = row.pid;
50 fileStruct.size = row.size;
51 if (fileStruct.name.startsWith('Snapshot')) {
52 fileStruct.type = FileType.SNAPSHOT;
54 fileStruct.type = FileType.TIMELINE;
[all …]
DHeapDataInterface.ts46 for (let fileStruct of this.fileStructs) { variable
47 if (fileStruct.id == id) {
48 return fileStruct;
257 for (let fileStruct of fileModule) { variable
258 let heapLoader = new HeapLoader(fileStruct);
259 fileStruct.heapLoader = heapLoader;
260 percent = 50 + Math.floor(50 / fileModule.length) * (fileModule.indexOf(fileStruct) + 1);
/developtools/smartperf_host/ide/src/js-heap/logic/
DAllocation.ts20 private fileStruct: FileStruct; property in AllocationLogic
24 constructor(fileStruct: FileStruct) {
25 this.fileStruct = fileStruct;
27 this.traceNodes = this.fileStruct.snapshotStruct.traceNodes;
77 functionList.push(this.fileStruct.snapshotStruct.functionInfos[node.functionIndex]);
DHeapLoader.ts37 private fileStruct: FileStruct; property in HeapLoader
54 constructor(fileStruct: FileStruct) {
55 this.fileStruct = fileStruct;
56 this.fileId = fileStruct.id;
57 this.nodeCount = fileStruct.snapshotStruct.nodeCount;
58 this.edgeCount = fileStruct.snapshotStruct.edgeCount;
59 this.nodeMap = fileStruct.snapshotStruct.nodeMap;
60 this.edges = fileStruct.snapshotStruct.edges;
61 this.allocationLogic = new AllocationLogic(this.fileStruct);
477 let samples = this.fileStruct.snapshotStruct.samples;
/developtools/smartperf_host/ide/test/js-heap/model/
DDatabaseStruct.test.ts45 let fileStruct = new FileStruct(); variable
46 expect(fileStruct).not.toBeUndefined();