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.ts74 tsArray: Array<number> = [];
/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.ts560 stack.tsArray.push(...(hook.tsArray || hook.startTs));
577 stack.tsArray.push(...(hook.tsArray || hook.startTs));
849 threadMerageData.tsArray = [...merageData.tsArray];
862 for (const ts of merageData.tsArray) {
863 rootMerageMap[merageData.tid].tsArray.push(ts);
1005 currentNode.tsArray.push(sample.startTs);
1011 currentNode.tsArray.push(sample.startTs);
1232 tsArray: Array<number> = []; property in NativeHookStatistics
1290 if (sample.tsArray && sample.tsArray.length > 0) {
1291 currentNode.tsArray.push(...sample.tsArray);
[all …]
DProcedureLogicWorkerPerf.ts525 perfProcessMerageData.tsArray = [...merageData.tsArray];
535 for (const ts of merageData.tsArray) {
536 rootMerageMap[merageData.pid].tsArray.push(ts);
944 existingNode.tsArray.push(...sample.ts.split(',').map(Number));
955 newNode.tsArray = sample.ts.split(',').map(Number);
982 clonePerfBottomUpStruct.tsArray = [...perfBottomUpStruct.tsArray];
1016 for (const ts of perfBottomUpStruct.tsArray) {
1017 bottomUpStruct.tsArray.push(ts);
1051 copyParent.tsArray = [...perfBottomUpStruct.tsArray];
1236 currentNode.tsArray.push(...sample.ts.split(',').map(Number));
DProcedureLogicWorkerFileSystem.ts873 fileMerageBean.tsArray = [...mergeData.tsArray];
882 for (const ts of mergeData.tsArray) {
883 rootMerageMap[mergeData.pid].tsArray.push(ts);
1169 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.ts322 detail: { time: data.tsArray },
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/
DTabPaneFileSystemCalltree.ts588 detail: { time: data.tsArray, durations: data.durArray },
DTabPaneCallTree.ts636 detail: { time: data.tsArray, durations: data.durArray },
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMCallTree.ts804 detail: { time: event.detail.tsArray, counts: event.detail.countArray },
/developtools/smartperf_host/ide/src/trace/component/chart/
DFrameChart.ts820 time: ChartStruct.selectFuncStruct.tsArray,