(self)
| 1021 | self.minidump_file.close() |
| 1022 | |
| 1023 | def ExceptionIP(self): |
| 1024 | if self.arch == MD_CPU_ARCHITECTURE_AMD64: |
| 1025 | return self.exception_context.rip |
| 1026 | elif self.arch == MD_CPU_ARCHITECTURE_ARM: |
| 1027 | return self.exception_context.pc |
| 1028 | elif self.arch == MD_CPU_ARCHITECTURE_ARM64: |
| 1029 | return self.exception_context.pc |
| 1030 | elif self.arch == MD_CPU_ARCHITECTURE_X86: |
| 1031 | return self.exception_context.eip |
| 1032 | |
| 1033 | def ExceptionSP(self): |
| 1034 | if self.arch == MD_CPU_ARCHITECTURE_AMD64: |
no outgoing calls
no test coverage detected