Searched refs:HeapSnapshotStruct (Results 1 – 10 of 10) sorted by relevance
| /developtools/smartperf_host/ide/src/trace/database/ui-worker/ |
| D | ProcedureWorkerHeapSnapshot.ts | 28 row: TraceRow<HeapSnapshotStruct> 41 HeapSnapshotStruct.draw(req.context, re); 45 HeapSnapshotStruct.hoverSnapshotStruct = undefined; 48 HeapSnapshotStruct.hoverSnapshotStruct = re; 56 list: Array<HeapSnapshotStruct>, 63 HeapSnapshotStruct.setFrame(file, startNS || 0, endNS || 0, totalNS || 0, frame); 69 … if (clickRowType === TraceRow.ROW_TYPE_HEAP_SNAPSHOT && HeapSnapshotStruct.hoverSnapshotStruct) { 70 let snapshotRow = sp.shadowRoot?.querySelector<TraceRow<HeapSnapshotStruct>>( 73 HeapSnapshotStruct.selectSnapshotStruct = HeapSnapshotStruct.hoverSnapshotStruct; 75 HeapSnapshotStruct.selectSnapshotStruct!, [all …]
|
| /developtools/smartperf_host/ide/test/trace/database/ui-worker/ |
| D | ProcedureWorkerHeapSnapshot.test.ts | 20 HeapSnapshotStruct, 90 expect(HeapSnapshotStruct.draw(ctx, data)).toBeUndefined(); 113 expect(HeapSnapshotStruct.setFrame(node, 0, 1, 2, data)).toBeUndefined(); 129 expect(HeapSnapshotStruct).not.toBeUndefined();
|
| /developtools/smartperf_host/ide/src/trace/component/chart/ |
| D | SpArkTsChart.ts | 24 import { type HeapSnapshotRender, HeapSnapshotStruct } from '../../database/ui-worker/ProcedureWork… 44 private heapSnapshotRow: TraceRow<HeapSnapshotStruct> | undefined; 169 this.heapSnapshotRow = TraceRow.skeleton<HeapSnapshotStruct>(); 183 HeapSnapshotStruct.hoverSnapshotStruct, 184 `<span>Name: ${HeapSnapshotStruct.hoverSnapshotStruct?.name || ''}</span> 185 …<span>Size: ${Utils.getBinaryByteWithUnit(HeapSnapshotStruct.hoverSnapshotStruct?.size || 0)}</spa… 189 HeapSnapshotStruct.hoverSnapshotStruct = this.heapSnapshotRow!.getHoverStruct();
|
| /developtools/smartperf_host/ide/test/js-heap/model/ |
| D | DatabaseStruct.test.ts | 15 import { HeapNode,HeapEdge,HeapTraceFunctionInfo,HeapSample,HeapLocation,HeapSnapshotStruct,FileStr… 41 let heapSnapshotStruct = new HeapSnapshotStruct();
|
| /developtools/smartperf_host/ide/src/js-heap/model/ |
| D | DatabaseStruct.ts | 242 export class HeapSnapshotStruct { class 276 snapshotStruct: HeapSnapshotStruct; 283 this.snapshotStruct = new HeapSnapshotStruct();
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/ark-ts/ |
| D | TabPaneComparison.ts | 27 import { HeapSnapshotStruct } from '../../../../database/ui-worker/ProcedureWorkerHeapSnapshot'; 64 initComparison(data: HeapSnapshotStruct, dataListCache: Array<HeapSnapshotStruct>): void { 67 let fileArr: HeapSnapshotStruct[] = []; 100 initSelect(fileId: number, comFileArr: Array<HeapSnapshotStruct>): void {
|
| D | TabPaneSummary.ts | 27 import { HeapSnapshotStruct } from '../../../../database/ui-worker/ProcedureWorkerHeapSnapshot'; 76 data: HeapSnapshotStruct, 77 dataListCache: Array<HeapSnapshotStruct>, 78 scrollCallback: ((d: HeapSnapshotStruct, ds: Array<HeapSnapshotStruct>) => void) | undefined 87 …initSummaryData(file: FileInfo | HeapSnapshotStruct, minNodeId?: number, maxNodeId?: number): void…
|
| /developtools/smartperf_host/ide/src/trace/component/ |
| D | SpSystemTrace.event.ts | 20 import {HeapSnapshotStruct, HeapSnapshotStructOnClick} from "../database/ui-worker/ProcedureWorkerH… 194 let snapshotClickHandler = (d: HeapSnapshotStruct) => { 196 let snapshotRow = sp.shadowRoot?.querySelector<TraceRow<HeapSnapshotStruct>>( 205 HeapSnapshotStruct.hoverSnapshotStruct = findEntry; 206 HeapSnapshotStruct.selectSnapshotStruct = findEntry;
|
| D | SpSystemTrace.ts | 71 import { HeapSnapshotStruct } from '../database/ui-worker/ProcedureWorkerHeapSnapshot'; 1003 HeapSnapshotStruct.hoverSnapshotStruct = undefined; 1029 HeapSnapshotStruct.selectSnapshotStruct = undefined; 1124 …HeapSnapshotStruct.hoverSnapshotStruct !== null && HeapSnapshotStruct.hoverSnapshotStruct !== unde…
|
| /developtools/smartperf_host/ide/src/trace/component/trace/base/ |
| D | TraceSheet.ts | 40 import { type HeapSnapshotStruct } from '../../../database/ui-worker/ProcedureWorkerHeapSnapshot'; alias 620 data: HeapSnapshotStruct, 621 dataListCache: Array<HeapSnapshotStruct>, 622 scrollCallback?: (data: HeapSnapshotStruct, dataListCache: Array<HeapSnapshotStruct>) => void
|