Searched refs:maxDepth (Results 1 – 15 of 15) sorted by relevance
/developtools/smartperf_host/ide/src/trace/database/data-trafic/ |
D | ArkTsSender.ts | 46 maxDepth: unknown; 93 maxDepth: res.maxDepth,
|
D | ArkTsReceiver.ts | 41 maxDepth: number; constant 56 maxDepth: 1, 303 if (item.depth + 1 > jsDataCache.maxDepth) { 304 jsDataCache.maxDepth = item.depth + 1; 365 maxDepth: jsDataCache.maxDepth, 410 jsDataCache.maxDepth = 1;
|
/developtools/smartperf_host/ide/src/trace/database/data-trafic/hiperf/ |
D | HiperfCallChartSender.ts | 87 maxDepth: unknown; 125 maxDepth: res.maxDepth,
|
D | HiperfCallChartReceiver.ts | 37 maxDepth: number; constant 41 maxDepth: 1, 167 if (item.depth + 1 > dataCache.maxDepth) { 169 dataCache.maxDepth = item.depth + 1; 222 maxDepth: dataCache.maxDepth, 476 dataCache.maxDepth = 1;
|
/developtools/smartperf_host/ide/src/trace/component/chart/ |
D | SpFrameTimeChart.ts | 116 let maxDepth: number = 1; 119 if (item.depth! >= maxDepth) { 120 maxDepth = item.depth! + 1; 127 let maxHeight: number = maxDepth * unitHeight; 172 let maxDepth: number = 1; 175 if (item.depth! >= maxDepth) { 176 maxDepth = item.depth! + 1; 184 let maxHeight: number = maxDepth * unitHeight; 326 let maxDepth = 0; 333 if (item.depth > maxDepth) { [all …]
|
D | SpProcessChart.ts | 70 private processSoMaxDepth: { pid: number; maxDepth: number }[] = []; 264 this.threadFuncMaxDepthMap.set(`${it.ipid}-${it.tid}`, it.maxDepth); 325 soRow = this.addSoInitRow(processRow, maxSoDepth.maxDepth); 636 let maxDepth: number = 1; variable 640 if (struct.depth! >= maxDepth) { 641 maxDepth = struct.depth! + 1; 655 let maxHeight: number = maxDepth * unitHeight; 711 addSoInitRow(processRow: TraceRow<ProcessStruct>, maxDepth: number): TraceRow<SoStruct> { 713 let maxHeight = (maxDepth + 1) * 20;
|
D | SpArkTsChart.ts | 60 let maxHeight = res.maxDepth * 20;
|
D | SpHiPerf.ts | 225 let maxHeight = res.maxDepth * 20;
|
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/bpftrace/ |
D | TabPaneSampleInstruction.ts | 43 private maxDepth = 0; 135 this.instructionEle.style.height = `${(this.maxDepth + 1) * SAMPLE_STRUCT_HEIGHT}px`; 141 this.instructionEle.height = (this.maxDepth + 1) * SAMPLE_STRUCT_HEIGHT; 407 this.maxDepth = Math.max(this.maxDepth, relation['depth']);
|
D | TabPaneSampleInstructionSelection.ts | 43 private maxDepth = 0; property in TabPaneSampleInstructionSelection 147 this.instructionEle.style.height = `${(this.maxDepth + 1) * SAMPLE_STRUCT_HEIGHT}px`; 153 this.instructionEle.height = (this.maxDepth + 1) * SAMPLE_STRUCT_HEIGHT; 441 this.maxDepth = Math.max(this.maxDepth, instruction.depth);
|
/developtools/smartperf_host/ide/test/trace/database/data-trafic/ |
D | ArkTsSender.test.ts | 35 maxDepth: 5,
|
/developtools/smartperf_host/ide/test/trace/component/chart/ |
D | SpProcessChart.test.ts | 127 maxDepth: 1, 131 maxDepth: 2,
|
/developtools/smartperf_host/ide/src/trace/database/sql/ |
D | ProcessThread.sql.ts | 730 export const queryProcessSoMaxDepth = (): Promise<Array<{ pid: number; maxDepth: number }>> =>
|
/developtools/smartperf_host/ide/src/trace/database/logic-worker/ |
D | ProcedureLogicWorkerPerf.ts | 29 const maxDepth: number = 256; constant 445 if (currentCallChain.length > maxDepth) {
|
/developtools/profiler/device/plugins/native_hook/src/ |
D | hook_client.cpp | 318 static int inline __attribute__((always_inline)) FpUnwind(int maxDepth, uint64_t *ip, int stackSize) in FpUnwind() argument 325 while (depth < maxDepth) { in FpUnwind()
|