Home
last modified time | relevance | path

Searched refs:selection (Results 1 – 12 of 12) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceSheet.ts101 private selection: SelectionParam | undefined | null; property in TraceSheet
242 this.selection!.statisticsSelectData = e.detail;
245 (pane.children.item(0) as any)!.fromStastics(this.selection);
251 this.selection!.fileSystemVMData = {path: e.detail.path};
255 (pane.children.item(0) as any)!.fromStastics(this.selection);
262 this.selection!.fileSystemIoData = {path: e.detail.path};
266 (pane.children.item(0) as any)!.fromStastics(this.selection);
273 this.selection!.fileSystemFsData = e.detail.data;
277 (pane.children.item(0) as any)!.fromStastics(this.selection);
290 pane!.hidden = !element.require(this.selection);
[all …]
DUtils.ts484 const selection = isStatistic ? val.nativeMemoryStatistic : val.nativeMemory; constant
486 if (selection.indexOf('All Heap & Anonymous VM') != -1) {
493 if (selection.indexOf('All Heap') != -1) {
500 if (selection.indexOf('All Anonymous VM') != -1) {
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/
DTabPanePurgPin.ts35 set data(selection: SelectionParam) {
44 'Selected range: ' + ((selection.rightNs - selection.leftNs) / 1000000.0).toFixed(5) + ' ms';
47 if (selection.purgeablePinAbility.length > 0) {
50 selection.leftNs,
51 selection.rightNs,
58 } else if (selection.purgeablePinVM.length > 0) {
61 selection.leftNs,
62 selection.rightNs,
DTabPanePurgPinSelection.ts31 set data(selection: SelectionParam | any) {
32 if (selection && selection.type) {
33 this.queryTableData(selection.type, selection.startNs);
DTabPanePurgTotal.ts34 set data(selection: SelectionParam) {
43 'Selected range: ' + ((selection.rightNs - selection.leftNs) / 1000000.0).toFixed(5) + ' ms';
47 if (selection.purgeableTotalAbility.length > 0) {
50 selection.leftNs,
51 selection.rightNs,
57 } else if (selection.purgeableTotalVM.length > 0) {
60 selection.leftNs,
61 selection.rightNs,
DTabPanePurgTotalSelection.ts31 set data(selection: SelectionParam | any) {
32 if (selection && selection.type) {
33 this.queryTableData(selection.type, selection.startNs);
/developtools/smartperf_host/ide/src/trace/component/
DSpSystemTrace.init.ts427 let selection = new SelectionParam();
428 selection.cpuStateRowsId = sp.stateRowsId;
429 selection.leftNs = TraceRow.rangeSelectObject?.startNS || 0;
430 selection.rightNs = TraceRow.rangeSelectObject?.endNS || 0;
431 selection.recordStartNs = (window as any).recordStartNS;
433 selection.pushSelection(it, sp);
442 if (selection.diskIOipids.length > 0 && !selection.diskIOLatency) {
443 selection.promiseList.push(
447 selection.diskIOipids
450 selection.fsCount = res[0].fsCount;
[all …]
DSpSystemTrace.ts319 pushPidToSelection(selection: SelectionParam, id: string): void {
321 if (!selection.processIds.includes(pid)) {
322 selection.processIds.push(pid);
/developtools/smartperf_host/ide/src/trace/component/trace/
DTimerShaftElement.ts478 let selection = this.selectionList[this.selectionList.length - 1];
479 if (selection) {
480 selection.isCurrentPane = true; // 设置当前面板为可以显示的状态
482 this.selectionMap.set(sliceTime.id, selection);
483 this.traceSheetEL?.rangeSelect(selection); // 显示选中区域对应的面板
/developtools/smartperf_host/ide/test/trace/component/trace/base/
DTraceSheet.test.ts54 let selection = { variable
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/charts/
DChart.ets771 * set a selection listener for the chart
/developtools/profiler/hiebpf/include/
Dvmlinux.h73099 u32 selection; member