Home
last modified time | relevance | path

Searched refs:json_exception (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/lldb/examples/python/
H A Dcrashlog.py474 def parse_crash_reason(self, json_exception): argument
475 exception_type = json_exception['type']
477 if 'signal' in json_exception:
478 exception_signal += "({})".format(json_exception['signal'])
480 if 'codes' in json_exception:
481 exception_extra = " ({})".format(json_exception['codes'])
482 elif 'subtype' in json_exception:
483 exception_extra = " ({})".format(json_exception['subtype'])