Lines Matching refs:ptd
1050 ptd = GetPtDesc(KVToPhysARM(ptep))
1051 iommu = dereference(ptd.iommu)
1071 ptd = GetPtDesc(KVToPhysARM(ptep))
1072 if ptd.pmap == kern.globals.kernel_pmap:
1073 extra_str = "Mapped by kernel task (kernel_pmap: {:#x})".format(ptd.pmap)
1075 task = TaskForPmapHelper(ptd.pmap)
1076 …extra_str = "Mapped by user task (pmap: {:#x}, task: {:s})".format(ptd.pmap, "{:#x}".format(task) …
1194 ptd = kern.GetValueFromAddress(pvh & ~0x3, 'pt_desc_t *')
1195 RunLldbCmdHelper("p/x *(pt_desc_t*)" + hex(ptd))
1200 RunLldbCmdHelper("p/x ((pt_desc_t*)" + hex(ptd) + ")->ptd_info[0]")
1266 ptd = kern.GetValueFromAddress(pvh & ~0x3, 'pt_desc_t *')
1267 return ptd
1273 ptd = GetPtDesc(KVToPhysARM(pte))
1275 refcnt = ptd.ptd_info[pt_index].refcnt
1276 wiredcnt = ptd.ptd_info[pt_index].wiredcnt
1277 print "descriptor: {:#x} (refcnt: {:#x}, wiredcnt: {:#x})".format(ptd, refcnt, wiredcnt)
1284 iommu_desc_name = '{:s}'.format(dereference(dereference(ptd.iommu).desc).name)
1285 if unsigned(dereference(ptd.iommu).name) is not 0:
1286 iommu_desc_name += '/{:s}'.format(dereference(ptd.iommu).name)
1288 print "iommu state: {:#x} ({:s})".format(ptd.iommu, iommu_desc_name)
1290 if ptd.pmap == kern.globals.kernel_pmap:
1293 task = TaskForPmapHelper(ptd.pmap)
1295 print "pmap: {:#x} {:s}".format(ptd.pmap, pmap_str)
1304 if ptd.ptd_info[pt_index].refcnt == 0x4000:
1310 …print "maps {}: {:#x}".format("IPA" if stage2 else "VA", long(unsigned(ptd.va[pt_index])) + (pte_p…
1507 ptd = GetPtDesc(paddr)
1508 if ptd.pmap != pmap: