Home
last modified time | relevance | path

Searched refs:currentNode (Results 1 – 10 of 10) sorted by relevance

/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerFileSystem.ts690 this.currentTreeList.forEach((currentNode) => {
691 currentNode.total = totalCount;
692 this.setMerageName(currentNode);
693 if (currentNode.id == '') {
694 currentNode.id = id + '';
697 if (currentNode.parentNode) {
698 if (currentNode.parentNode.id == '') {
699 currentNode.parentNode.id = id + '';
702 currentNode.parentId = currentNode.parentNode.id;
734 currentNode: FileMerageBean,
[all …]
DProcedureLogicWorkerPerf.ts401 currentNode: PerfCallChainMerageData,
411 currentNode.initChildren.filter((child: PerfCallChainMerageData) => {
422 currentNode.children.push(node);
423 currentNode.initChildren.push(node);
425 node.parentNode = currentNode;
491 merageChildren(currentNode: PerfCallChainMerageData, callChain: any, isTopDown: boolean) {
496 currentNode.initChildren.filter((child: PerfCallChainMerageData) => {
507 currentNode.children.push(node);
508 currentNode.initChildren.push(node);
510 node.parentNode = currentNode;
[all …]
DProcedureLogicWorkerNativeNemory.ts1066 let currentNode = groupMap[sample.tid + '-' + sample.eventId] || new NativeHookStatistics(); variable
1067 if (currentNode.count == 0) {
1068 Object.assign(currentNode, sample);
1070 currentNode.heapSize = sample.heapSize - sample.freeSize;
1071 currentNode.count = sample.count - sample.freeCount;
1073 if (currentNode.count === 0) {
1074 currentNode.count++;
1077 currentNode.count++;
1078 currentNode.heapSize += sample.heapSize;
1080 groupMap[sample.tid + '-' + sample.eventId] = currentNode;
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerPerf.ts378 currentNode: PerfCallChainMerageData,
388 currentNode.initChildren.filter((child: PerfCallChainMerageData) => {
399 currentNode.children.push(node);
400 currentNode.initChildren.push(node);
402 node.parentNode = currentNode;
468 merageChildren(currentNode: PerfCallChainMerageData, callChain: any, isTopDown: boolean) {
473 currentNode.initChildren.filter((child: PerfCallChainMerageData) => {
484 currentNode.children.push(node);
485 currentNode.initChildren.push(node);
487 node.parentNode = currentNode;
[all …]
DProcedureLogicWorkerFileSystem.ts734 currentNode: FileMerageBean,
744 currentNode.initChildren.filter((child: any) => {
760 currentNode.children.push(node);
761 currentNode.initChildren.push(node);
763 node.parentNode = currentNode;
768 setMerageName(currentNode: FileMerageBean) {
769 if (currentNode.pathId == -1) {
770 currentNode.canCharge = false;
771 currentNode.symbol = currentNode.ip;
772 currentNode.symbolName = currentNode.symbol;
[all …]
DProcedureLogicWorkerNativeNemory.ts1011 let currentNode = groupMap[sample.tid + '-' + sample.eventId] || new NativeHookStatistics(); variable
1012 if (currentNode.count == 0) {
1013 Object.assign(currentNode, sample);
1015 currentNode.heapSize = sample.heapSize - sample.freeSize;
1016 currentNode.count = sample.count - sample.freeCount;
1018 if (currentNode.count === 0) {
1019 currentNode.count++;
1022 currentNode.count++;
1023 currentNode.heapSize += sample.heapSize;
1025 groupMap[sample.tid + '-' + sample.eventId] = currentNode;
[all …]
/developtools/smartperf_host/ide/test/trace/database/logic-worker/
DProcedureLogicWorkerFileSystem.test.ts195 let currentNode = { variable
201 expect(handlerMap.setMerageName(currentNode)).toBeUndefined();
206 let currentNode = { variable
213 expect(handlerMap.setMerageName(currentNode)).toBeUndefined();
320 let currentNode = { variable
341 expect(FileMerageBean.merageCallChainSample(currentNode, callChain, sample, isEnd));
371 let currentNode = { variable
383 …expect(handlerMap.merageChildrenByIndex(currentNode, callChainDataList, index, sample, isTopDown))…
DProcedureLogicWorkerPerf.test.ts334 let currentNode = { variable
344 expect(procedureLogicWorkerPerf.merageChildren(currentNode, list, true)).toBeUndefined();
/developtools/smartperf_host/ide/src/js-heap/logic/
DAllocation.ts148 let currentNode = this.getNodeById(allocationNodeId);
150 if (currentNode) {
151 this.getFunctionStack(currentNode, functionList);
/developtools/profiler/host/smartperf/ide/src/js-heap/logic/
DAllocation.ts148 let currentNode = this.getNodeById(allocationNodeId);
150 if (currentNode) {
151 this.getFunctionStack(currentNode, functionList);