Lines Matching refs:th
186 processChildRows.forEach((th) => {
187 th.rangeSelect = true;
188 th.checkType = '2';
189 if (th.rowType == TraceRow.ROW_TYPE_THREAD) {
190 this.threadIds.push(parseInt(th.rowId!));
191 } else if (th.rowType == TraceRow.ROW_TYPE_FUNC) {
192 if (th.asyncFuncName) {
194 name: th.asyncFuncName,
195 pid: th.asyncFuncNamePID || 0,
198 this.funTids.push(parseInt(th.rowId!));
200 } else if (th.rowType == TraceRow.ROW_TYPE_MEM) {
201 this.processTrackIds.push(parseInt(th.rowId!));
227 memoryRows.forEach((th) => {
228 th.rangeSelect = true;
229 th.checkType = '2';
230 if (th.getAttribute('heap-type') === 'native_hook_statistic') {
231 this.nativeMemoryStatistic.push(th.rowId!);
233 this.nativeMemory.push(th.rowId!);
301 abilityChildRows.forEach((th) => {
302 th.rangeSelect = true;
303 th.checkType = '2';
304 if (th.rowType == TraceRow.ROW_TYPE_CPU_ABILITY) {
305 this.cpuAbilityIds.push(th.rowId!);
306 } else if (th.rowType == TraceRow.ROW_TYPE_MEMORY_ABILITY) {
307 this.memoryAbilityIds.push(th.rowId!);
308 } else if (th.rowType == TraceRow.ROW_TYPE_DISK_ABILITY) {
309 this.diskAbilityIds.push(th.rowId!);
310 } else if (th.rowType == TraceRow.ROW_TYPE_NETWORK_ABILITY) {
311 this.networkAbilityIds.push(th.rowId!);
312 } else if (th.rowType == TraceRow.ROW_TYPE_DMA_ABILITY) {
313 this.dmaAbilityData.push(...intersectData(th)!);
314 } else if (th.rowType == TraceRow.ROW_TYPE_GPU_MEMORY_ABILITY) {
315 this.gpuMemoryAbilityData.push(...intersectData(th)!);
316 } else if (th.rowType === TraceRow.ROW_TYPE_PURGEABLE_TOTAL_ABILITY) {
317 this.purgeableTotalAbility.push(...intersectData(th));
318 } else if (th.rowType === TraceRow.ROW_TYPE_PURGEABLE_PIN_ABILITY) {
319 this.purgeablePinAbility.push(...intersectData(th));
354 hiperfProcessRows.forEach((th) => {
355 th.rangeSelect = true;
356 th.checkType = '2';
454 vMTrackerChildRows.forEach((th) => {
455 th.rangeSelect = true;
456 if (th.rowType === TraceRow.ROW_TYPE_DMA_VMTRACKER) {
457 this.dmaVmTrackerData.push(...intersectData(th)!);
458 } else if (th.rowType === TraceRow.ROW_TYPE_SYS_MEMORY_GPU) {
460 … ...sp.shadowRoot!.querySelectorAll<TraceRow<any>>(`trace-row[row-parent-id='${th.rowId}']`),
462 if (!th.expansion) {
463 vMTrackerGpuChildRows = [...th.childrenList];
468 } else if (th.rowType === TraceRow.ROW_TYPE_PURGEABLE_TOTAL_VM) {
469 this.purgeableTotalVM.push(...intersectData(th));
470 } else if (th.rowType === TraceRow.ROW_TYPE_PURGEABLE_PIN_VM) {
471 this.purgeablePinVM.push(...intersectData(th));
472 } else if (th.rowType === TraceRow.ROW_TYPE_VM_TRACKER_SMAPS) {
474 … ...sp.shadowRoot!.querySelectorAll<TraceRow<any>>(`trace-row[row-parent-id='${th.rowId}']`),
476 if (!th.expansion) {
477 sMapsChildRows = [...th.childrenList];
485 } else if (th.rowType == TraceRow.ROW_TYPE_VMTRACKER_SHM) {
486 this.vmtrackershm.push(...intersectData(th)!);
604 vMTrackerGpuChildRows.forEach((th) => {
605 th.rangeSelect = true;
606 if (th.rowType == TraceRow.ROW_TYPE_GPU_MEMORY_VMTRACKER) {
607 this.gpuMemoryTrackerData.push(...intersectData(th)!);
608 } else if (th.rowType == TraceRow.ROW_TYPE_SYS_MEMORY_GPU_GL) {
610 th.dataListCache.filter(
615 } else if (th.rowType == TraceRow.ROW_TYPE_SYS_MEMORY_GPU_GRAPH) {
617 th.dataListCache.filter(
622 } else if (th.rowType == TraceRow.ROW_TYPE_SYS_MEMORY_GPU_TOTAL) {
624 th.dataListCache.filter(
629 } else if (th.rowType == TraceRow.ROW_TYPE_SYS_MEMORY_GPU_WINDOW) {
631 th.dataListCache.filter(
650 sdkRows.forEach((th) => {
651 th.rangeSelect = true;
652 th.checkType = '2';