Lines Matching refs:v
40 v = vmap_area['vm']
41 gdb.write("0x%x-0x%x %10d" % (v['addr'], v['addr'] + v['size'], v['size']))
42 if v['caller']:
43 gdb.write(" %s" % str(v['caller']).split(' ')[-1])
44 if v['nr_pages']:
45 gdb.write(" pages=%d" % v['nr_pages'])
46 if v['phys_addr']:
47 gdb.write(" phys=0x%x" % v['phys_addr'])
48 if v['flags'] & constants.LX_VM_IOREMAP:
50 if v['flags'] & constants.LX_VM_ALLOC:
52 if v['flags'] & constants.LX_VM_MAP:
54 if v['flags'] & constants.LX_VM_USERMAP:
56 if v['flags'] & constants.LX_VM_DMA_COHERENT:
58 if is_vmalloc_addr(v['pages']):