(self, f, straddress, strexact)
| 3369 | return |
| 3370 | |
| 3371 | def output_disasm(self, f, straddress, strexact): |
| 3372 | try: |
| 3373 | self.output_header(f) |
| 3374 | address = int(straddress, 0) |
| 3375 | if not self.reader.IsValidAddress(address): |
| 3376 | f.write("<h3>Address 0x%x not found in the dump.</h3>" % address) |
| 3377 | return |
| 3378 | region = self.reader.FindRegion(address) |
| 3379 | self.output_disasm_range( |
| 3380 | f, region[0], region[0] + region[1], address, strexact == "on") |
| 3381 | self.output_footer(f) |
| 3382 | except ValueError: |
| 3383 | f.write("<h3>Unrecognized address format \"%s\".</h3>" % straddress) |
| 3384 | return |
| 3385 | |
| 3386 | def output_disasm_range( |
| 3387 | self, f, start_address, end_address, highlight_address, exact): |
no test coverage detected