Print a descriptor array in a readable format.
(self, address)
| 3928 | print("%s %s" % (self.padawan.FormatIntPtr(address), info)) |
| 3929 | |
| 3930 | def do_do_desc(self, address): |
| 3931 | """ |
| 3932 | Print a descriptor array in a readable format. |
| 3933 | """ |
| 3934 | start = self.ParseAddressExpr(address) |
| 3935 | if ((start & 1) == 1): start = start - 1 |
| 3936 | DescriptorArray(FixedArray(self.heap, None, start)).Print(Printer()) |
| 3937 | |
| 3938 | def do_do_map(self, address): |
| 3939 | """ |
nothing calls this directly
no test coverage detected