Home
last modified time | relevance | path

Searched refs:tsArray (Results 1 – 18 of 18) sorted by relevance

/developtools/smartperf_host/ide/src/trace/bean/
DKeyPathStruct.ts19 tsArray: Array<number>; property in KeyPathStruct
21 constructor(tid: number, threadName: string, tsArray: Array<number>) {
24 this.tsArray = [];
25 for (const ts of tsArray) {
26 this.tsArray.push(ts * nsToS);
DPerfBottomUpStruct.ts31 tsArray: Array<number> = [];
DFrameChartStruct.ts61 tsArray: Array<number> = []; property in ChartStruct
/developtools/smartperf_host/ide/src/trace/component/
DUtils.ts82 const tsArray = threads[threadKey]; constant
89 if (tid && threadName && tsArray.length > 0) {
90 const keyPath = new KeyPathStruct(tid, threadName, tsArray);
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerNativeNemory.ts493 stack.tsArray.push(...(hook.tsArray || hook.startTs));
510 stack.tsArray.push(...(hook.tsArray || hook.startTs));
784 threadMerageData.tsArray = [...merageData.tsArray];
797 for (const ts of merageData.tsArray) {
798 rootMerageMap[merageData.tid].tsArray.push(ts);
936 currentNode.tsArray.push(sample.startTs);
942 currentNode.tsArray.push(sample.startTs);
1133 tsArray: Array<number> = []; property in NativeHookStatistics
1193 if (sample.tsArray && sample.tsArray.length > 0) {
1194 currentNode.tsArray.push(...sample.tsArray);
[all …]
DProcedureLogicWorkerPerf.ts475 perfProcessMerageData.tsArray = [...merageData.tsArray];
485 for (const ts of merageData.tsArray) {
486 rootMerageMap[merageData.pid].tsArray.push(ts);
865 existingNode.tsArray.push(...sample.ts.split(',').map(Number));
876 newNode.tsArray = sample.ts.split(',').map(Number);
903 clonePerfBottomUpStruct.tsArray = [...perfBottomUpStruct.tsArray];
937 for (const ts of perfBottomUpStruct.tsArray) {
938 bottomUpStruct.tsArray.push(ts);
972 copyParent.tsArray = [...perfBottomUpStruct.tsArray];
1157 currentNode.tsArray.push(...sample.ts.split(',').map(Number));
DProcedureLogicWorkerFileSystem.ts801 fileMerageBean.tsArray = [...mergeData.tsArray];
810 for (const ts of mergeData.tsArray) {
811 rootMerageMap[mergeData.pid].tsArray.push(ts);
1075 currentNode.tsArray.push(sample.ts);
DProcedureLogicWorkerCommon.ts29 tsArray: Array<number> = []; // 每个绘制的函数由哪些时间点的样本组成 property in ChartStruct
/developtools/smartperf_host/ide/test/trace/database/logic-worker/
DProcedureLogicWorkerPerf.test.ts657 tsArray: []
659 …expect(procedureLogicWorkerPerf.copyParentNode(perfBottomUpStruct, { parentNode: 1 ,tsArray: []}))…
666 tsArray: []
668 …expect(procedureLogicWorkerPerf.copyParentNode(perfBottomUpStruct, { parentNode: 1, tsArray: []}))…
682 tsArray: []
DProcedureLogicWorkerNativeNemory.test.ts150 tsArray: [],
154 traverseTree(stack, {countArray: [],startTs: 23, tsArray: [],count: 0})).toBeUndefined();
168 tsArray: [],
171 …orkerNativeMemory.traverseSampleTree(stack, {countArray: [],startTs: 23, tsArray: [],count: 0})).t…
726 tsArray: []
DProcedureLogicWorkerFileSystem.test.ts328 tsArray: [],
/developtools/smartperf_host/ide/src/trace/database/sql/
DCpu.sql.ts28 sqlArray.push(` or (tid = ${thread.tid} and ts in (${thread.tsArray}))`);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/
DTabPerfBottomUp.ts149 detail: {time: bottomUpData.tsArray},
DTabPerfProfile.ts316 detail: { time: data.tsArray },
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/
DTabPaneFileSystemCalltree.ts560 detail: {time: data.tsArray, durations: data.durArray},
DTabPaneCallTree.ts606 detail: { time: data.tsArray, durations: data.durArray },
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMCallTree.ts769 detail: { time: event.detail.tsArray, counts: event.detail.countArray },
/developtools/smartperf_host/ide/src/trace/component/chart/
DFrameChart.ts755 time: ChartStruct.selectFuncStruct.tsArray,