Home
last modified time | relevance | path

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

/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/
DTabPerfBottomUp.ts32 private stackTable: LitTable | null | undefined; property in TabpanePerfBottomUp
43 this.stackTable = this.shadowRoot?.querySelector('#stackTable') as LitTable;
47 this.stackTable!.addEventListener('row-click', (evt) => this.stackTableRowClick(evt));
97 this.stackTable!.recycleDataSource = [];
159 this.stackTable!.recycleDataSource = callStack;
161 this.stackTable?.clearAllSelection(bottomUpData);
162 this.stackTable?.setCurrentSelection(bottomUpData);
202 this.stackTable?.shadowRoot.querySelector('.table').style.height = `${
205 this.stackTable?.reMeauseHeight();
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ark-ts/
DTabPaneJsCpu.ts32 private stackTable: LitTable | null | undefined; property in TabPaneJsCpuCallTree
147 this.stackTable!.recycleDataSource = heaviestStack;
149 this.stackTable?.clearAllSelection(data);
150 this.stackTable?.setCurrentSelection(data);
160 this.stackTable = this.shadowRoot?.querySelector('#stackTable') as LitTable;
166 this.stackTable!.addEventListener('row-click', (evt) => {
203 this.stackTable?.shadowRoot.querySelector('.table').style.height =
205 this.stackTable?.reMeauseHeight();
253 this.stackTable!.recycleDataSource = [];
DTabPaneSummary.ts35 private stackTable: LitTable | null | undefined; property in TabPaneSummary
60 this.stackTable = this.shadowRoot?.querySelector<LitTable>('#stackTable');
333 that.stackTable!.style.display = 'none';
341 that.stackTable!.style.display = 'flex';
342 that.stackTable!.recycleDataSource = that.stackData;
380 this.stackTable!.recycleDataSource = [];
386 this.stackTable!.style.display = 'none';
644 this.stackTable!.recycleDataSource = this.stackData;
648 this.stackTable!.style.display = 'grid';
653 this.stackTable!.recycleDataSource = [];
[all …]
/developtools/hiperf/src/
Dperf_file_format.cpp325 UniStackTableInfo& stackTable = uniStackTableInfos_.emplace_back(); in PerfFileSectionUniStackTable() local
326 Read(stackTable.pid); in PerfFileSectionUniStackTable()
327 HLOGV("pid %" PRIu32 " ", stackTable.pid); in PerfFileSectionUniStackTable()
328 Read(stackTable.tableSize); in PerfFileSectionUniStackTable()
329 HLOGV("tableSize %" PRIu32 " ", stackTable.tableSize); in PerfFileSectionUniStackTable()
330 Read(stackTable.numNodes); in PerfFileSectionUniStackTable()
331 HLOGV("numNodes %" PRIu32 " ", stackTable.numNodes); in PerfFileSectionUniStackTable()
332 for (size_t j = 0; j < stackTable.numNodes; j++) { in PerfFileSectionUniStackTable()
333 UniStackNode& node = stackTable.nodes.emplace_back(); in PerfFileSectionUniStackTable()
Dvirtual_runtime.cpp1071 auto stackTable = std::make_shared<UniqueStackTable>(item.pid, item.tableSize); in ImportUniqueStackNodes() local
1073 stackTable->ImportNode(node.index, node.node); in ImportUniqueStackNodes()
1075 processStackMap_[item.pid] = std::move(stackTable); in ImportUniqueStackNodes()