/developtools/smartperf_host/ide/src/trace/bean/ |
D | KeyPathStruct.ts | 19 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);
|
D | PerfBottomUpStruct.ts | 31 tsArray: Array<number> = [];
|
D | FrameChartStruct.ts | 74 tsArray: Array<number> = [];
|
/developtools/smartperf_host/ide/src/trace/component/ |
D | Utils.ts | 82 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/ |
D | ProcedureLogicWorkerNativeNemory.ts | 560 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 …]
|
D | ProcedureLogicWorkerPerf.ts | 525 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));
|
D | ProcedureLogicWorkerFileSystem.ts | 873 fileMerageBean.tsArray = [...mergeData.tsArray]; 882 for (const ts of mergeData.tsArray) { 883 rootMerageMap[mergeData.pid].tsArray.push(ts); 1169 currentNode.tsArray.push(sample.ts);
|
D | ProcedureLogicWorkerCommon.ts | 29 tsArray: Array<number> = []; // 每个绘制的函数由哪些时间点的样本组成 property in ChartStruct
|
/developtools/smartperf_host/ide/test/trace/database/logic-worker/ |
D | ProcedureLogicWorkerPerf.test.ts | 657 tsArray: [] 659 …expect(procedureLogicWorkerPerf.copyParentNode(perfBottomUpStruct, { parentNode: 1 ,tsArray: []}))… 666 tsArray: [] 668 …expect(procedureLogicWorkerPerf.copyParentNode(perfBottomUpStruct, { parentNode: 1, tsArray: []}))… 682 tsArray: []
|
D | ProcedureLogicWorkerNativeNemory.test.ts | 150 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: []
|
D | ProcedureLogicWorkerFileSystem.test.ts | 328 tsArray: [],
|
/developtools/smartperf_host/ide/src/trace/database/sql/ |
D | Cpu.sql.ts | 28 sqlArray.push(` or (tid = ${thread.tid} and ts in (${thread.tsArray}))`);
|
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/ |
D | TabPerfBottomUp.ts | 149 detail: { time: bottomUpData.tsArray },
|
D | TabPerfProfile.ts | 322 detail: { time: data.tsArray },
|
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/ |
D | TabPaneFileSystemCalltree.ts | 588 detail: { time: data.tsArray, durations: data.durArray },
|
D | TabPaneCallTree.ts | 636 detail: { time: data.tsArray, durations: data.durArray },
|
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/ |
D | TabPaneNMCallTree.ts | 804 detail: { time: event.detail.tsArray, counts: event.detail.countArray },
|
/developtools/smartperf_host/ide/src/trace/component/chart/ |
D | FrameChart.ts | 820 time: ChartStruct.selectFuncStruct.tsArray,
|