Home
last modified time | relevance | path

Searched refs:perfCall (Results 1 – 8 of 8) sorted by relevance

/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/hiperf/
DTabPerfProfile.ts104 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/
DTabPerfProfile.ts104 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/
DPerfProfile.test.ts39 let perfCall = new PerfCall(); variable
287 perfCall = {
292 expect(perfCall).not.toBeUndefined();
293 expect(perfCall).toMatchInlineSnapshot(
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpHiPerf.ts335 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/
DSpHiPerf.ts406 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/
DProcedureLogicWorkerPerf.ts64 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/
DProcedureLogicWorkerPerf.test.ts211 let perfCall = new PerfCall(); variable
212 perfCall = {
217 expect(perfCall).not.toBeUndefined();
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerPerf.ts68 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);