Searched refs:perfCall (Results 1 – 8 of 8) sorted by relevance
| /developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/hiperf/ |
| D | TabPerfProfile.ts | 104 for (let perfCall of perfCallSrc) { 105 if (perfCall.id == target.id) { 106 parentsData.push(perfCall); 109 …if (this.getParentTree(perfCall.children as Array<PerfCallChainMerageData>, target, parentsData)) { 110 parentsData.push(perfCall); 123 for (let perfCall of perfCallSrc) { 124 if (perfCall.id == id && perfCall.children.length == 0) { 125 children.push(perfCall); 128 if (this.getChildTree(perfCall.children as Array<PerfCallChainMerageData>, id, children)) { 129 children.push(perfCall);
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/ |
| D | TabPerfProfile.ts | 104 for (let perfCall of perfCallSrc) { 105 if (perfCall.id == target.id) { 106 parentsData.push(perfCall); 109 …if (this.getParentTree(perfCall.children as Array<PerfCallChainMerageData>, target, parentsData)) { 110 parentsData.push(perfCall); 123 for (let perfCall of perfCallSrc) { 124 if (perfCall.id == id && perfCall.children.length == 0) { 125 children.push(perfCall); 128 if (this.getChildTree(perfCall.children as Array<PerfCallChainMerageData>, id, children)) { 129 children.push(perfCall);
|
| /developtools/smartperf_host/ide/test/trace/bean/ |
| D | PerfProfile.test.ts | 39 let perfCall = new PerfCall(); variable 287 perfCall = { 292 expect(perfCall).not.toBeUndefined(); 293 expect(perfCall).toMatchInlineSnapshot(
|
| /developtools/smartperf_host/ide/src/trace/component/chart/ |
| D | SpHiPerf.ts | 335 let perfCall = perfDataQuery.callChainMap.get(struct.callchain_id || 0); variable 336 …tip = `<span>${perfCall ? perfCall.name : ''} (${perfCall ? perfCall.depth : '0'} other frames)</s…
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/chart/ |
| D | SpHiPerf.ts | 406 let perfCall = perfDataQuery.callChainMap.get(struct.callchain_id || 0); variable 407 …tip = `<span>${perfCall ? perfCall.name : ''} (${perfCall ? perfCall.depth : '0'} other frames)</s…
|
| /developtools/profiler/host/smartperf/ide/src/trace/database/logic-worker/ |
| D | ProcedureLogicWorkerPerf.ts | 64 perfCalls.forEach((perfCall: any) => { 65 this.dataCache.perfCallChainMap.set(perfCall.sampleId, perfCall); 282 let perfCall = new PerfCall(); variable 283 perfCall.depth = this.callChainData[callChain.sampleId]?.length || 0; 284 perfCall.sampleId = callChain.sampleId; 285 perfCall.name = callChain.name; 286 this.dataCache.perfCallChainMap.set(callChain.sampleId, perfCall);
|
| /developtools/smartperf_host/ide/test/trace/database/logic-worker/ |
| D | ProcedureLogicWorkerPerf.test.ts | 211 let perfCall = new PerfCall(); variable 212 perfCall = { 217 expect(perfCall).not.toBeUndefined();
|
| /developtools/smartperf_host/ide/src/trace/database/logic-worker/ |
| D | ProcedureLogicWorkerPerf.ts | 68 perfCalls.forEach((perfCall: any) => { 69 this.dataCache.perfCallChainMap.set(perfCall.sampleId, perfCall); 304 let perfCall = new PerfCall(); variable 305 perfCall.depth = this.callChainData[callChain.sampleId]?.length || 0; 306 perfCall.sampleId = callChain.sampleId; 307 perfCall.name = callChain.name; 308 this.dataCache.perfCallChainMap.set(callChain.sampleId, perfCall);
|