Home | History | Annotate | Download | only in tools

Lines Matching refs:exception

56 Shows the processor state at the point of exception including the
223 ("exception", MINIDUMP_EXCEPTION.ctype),
606 self.exception = None
632 self.exception = MINIDUMP_EXCEPTION_STREAM.Read(
634 DebugPrint(self.exception)
637 self.minidump, self.exception.thread_context.rva)
640 self.minidump, self.exception.thread_context.rva)
643 self.minidump, self.exception.thread_context.rva)
646 self.minidump, self.exception.thread_context.rva)
950 except Exception as e:
1254 return "***CAUGHT EXCEPTION IN GROKDUMP***"
1741 exception_thread = self.reader.thread_map[self.reader.exception.thread_id]
2073 class WebParameterError(Exception):
2075 Exception.__init__(self, message)
2191 exception_thread = self.reader.thread_map[self.reader.exception.thread_id]
2259 exception_thread = self.reader.thread_map[self.reader.exception.thread_id]
2338 exception_thread = self.reader.thread_map[self.reader.exception.thread_id]
2339 f.write("<h3>Exception context</h3>")
2342 f.write("&nbsp;&nbsp; Exception code: %08X<br/>\n" %
2343 self.reader.exception.exception.code)
2345 if self.reader.exception.exception.parameter_count > 0:
2346 f.write("&nbsp;&nbsp; Exception parameters: \n")
2347 for i in xrange(0, self.reader.exception.exception.parameter_count):
2348 f.write("%08x" % self.reader.exception.exception.information[i])
3138 if reader.exception is None:
3139 print "Minidump has no exception info"
3141 print "Exception info:"
3142 exception_thread = reader.thread_map[reader.exception.thread_id]
3144 print " code: %08X" % reader.exception.exception.code
3173 print "Disassembly around exception.eip:"
3210 if reader.exception is not None:
3213 print "Annotated stack (from exception.esp to bottom):"