| /developtools/smartperf_host/ide/src/trace/database/logic-worker/ |
| D | ProcedureLogicWorkerFileSystem.ts | 823 this.currentTreeList.forEach((currentNode: any): void => { 824 currentNode.total = totalCount; 825 this.setMerageName(currentNode); 826 if (currentNode.id === '') { 827 currentNode.id = id + ''; 830 if (currentNode.parentNode) { 831 if (currentNode.parentNode.id === '') { 832 currentNode.parentNode.id = id + ''; 835 currentNode.parentId = currentNode.parentNode.id; 873 currentNode: FileMerageBean, [all …]
|
| D | ProcedureLogicWorkerNativeNemory.ts | 926 let currentNode = groupMap[sample.tid + '-' + sample.eventId] || new NativeHookStatistics(); variable 927 if (currentNode.count === 0) { 928 Object.assign(currentNode, sample); 930 currentNode.heapSize = sample.heapSize - sample.freeSize; 931 currentNode.count = sample.count - sample.freeCount; 933 if (currentNode.count === 0) { 934 currentNode.count++; 935 currentNode.countArray.push(1); 936 currentNode.tsArray.push(sample.startTs); 939 currentNode.count++; [all …]
|
| D | ProcedureLogicWorkerPerf.ts | 513 currentNode: PerfCallChainMerageData, 526 currentNode.initChildren.filter((child: PerfCallChainMerageData): boolean => { 541 currentNode.children.push(node); 542 currentNode.initChildren.push(node); 544 node.parentNode = currentNode; 854 let currentNode = topUp; 858 currentNode = topUp; 861 const existingNode = currentNode.children.find( 866 currentNode = existingNode; 877 currentNode.addChildren(newNode); [all …]
|
| /developtools/smartperf_host/ide/test/trace/database/logic-worker/ |
| D | ProcedureLogicWorkerFileSystem.test.ts | 194 let currentNode = { variable 200 expect(handlerMap.setMerageName(currentNode)).toBeUndefined(); 205 let currentNode = { variable 212 expect(handlerMap.setMerageName(currentNode)).toBeUndefined(); 319 let currentNode = { variable 342 expect(FileMerageBean.merageCallChainSample(currentNode, callChain, sample, isEnd)); 372 let currentNode = { variable 384 …expect(handlerMap.merageChildrenByIndex(currentNode, callChainDataList, index, sample, isTopDown))…
|
| D | ProcedureLogicWorkerPerf.test.ts | 498 let currentNode = { variable 503 …expect(procedureLogicWorkerPerf.mergeChildrenByIndex(currentNode, [], 9, [], true)).toBeUndefined(… 680 let currentNode = { variable 689 expect(PerfCallChainMerageData.merageCallChainSample(currentNode, callChain, {
|
| D | ProcedureLogicWorkerNativeNemory.test.ts | 541 let currentNode = { variable 546 …expect(procedureLogicWorkerNativeMemory.merageChildrenByIndex(currentNode, [], 21, [], true)).toBe… 723 let currentNode = { variable 728 expect(NativeHookCallInfo.merageCallChainSample(currentNode, [], []));
|
| /developtools/smartperf_host/ide/src/js-heap/logic/ |
| D | Allocation.ts | 148 let currentNode = this.getNodeById(allocationNodeId); 150 if (currentNode) { 151 this.getFunctionStack(currentNode, functionList);
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/hisysevent/ |
| D | TabPaneHiSysEventSummary.ts | 211 private changeNode(currentNode: number): void { 212 if (this.expandedNodeList.has(currentNode)) { 213 this.expandedNodeList['delete'](currentNode); 215 this.expandedNodeList.add(currentNode);
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/hilog/ |
| D | TabPaneHiLogSummary.ts | 182 private changeNode(currentNode: number): void { 183 if (this.expandedNodeList.has(currentNode)) { 184 this.expandedNodeList['delete'](currentNode); 186 this.expandedNodeList.add(currentNode);
|
| /developtools/smartperf_host/ide/src/trace/component/trace/base/ |
| D | TraceRowConfig.ts | 858 private changeNode(currentNode: number): void { 859 if (this.expandedNodeList.has(currentNode)) { 860 this.expandedNodeList['delete'](currentNode); 862 this.expandedNodeList.add(currentNode);
|
| /developtools/smartperf_host/ide/src/trace/component/chart/ |
| D | FrameChart.ts | 598 const currentNode = stack.pop(); constant 599 if (currentNode) { 600 currentNode.children.forEach((child) => {
|