Searched refs:DebuggerException (Results 1 – 12 of 12) sorted by relevance
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/utils/ |
H A D | Exceptions.py | 22 class DebuggerException(Dexception): class 26 super(DebuggerException, self).__init__(msg) 34 class LoadDebuggerException(DebuggerException):
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/debugger/DebuggerControllers/ |
H A D | DefaultController.py | 20 from dex.utils.Exceptions import DebuggerException, LoadDebuggerException 46 except DebuggerException: 47 raise LoadDebuggerException(DebuggerException.msg) 137 raise DebuggerException(
|
H A D | ConditionalController.py | 23 from dex.utils.Exceptions import DebuggerException 113 raise DebuggerException( 149 raise DebuggerException(
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/ |
H A D | LLDB.py | 18 from dex.utils.Exceptions import DebuggerException, LoadDebuggerException 116 raise DebuggerException( 190 raise DebuggerException(error.GetCString()) 192 raise DebuggerException("exe does not exist") 194 raise DebuggerException("could not launch process") 196 raise DebuggerException("multiple threads not supported")
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/tools/list_debuggers/ |
H A D | Tool.py | 14 from dex.utils.Exceptions import DebuggerException, Error 38 except DebuggerException as e:
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/debugger/ |
H A D | DebuggerBase.py | 18 from dex.utils.Exceptions import DebuggerException 51 except DebuggerException: 58 except DebuggerException:
|
H A D | Debuggers.py | 22 from dex.utils.Exceptions import DebuggerException 227 raise DebuggerException(e)
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/tools/test/ |
H A D | Tool.py | 23 from dex.utils.Exceptions import DebuggerException 232 except (BuildScriptException, DebuggerException, HeuristicException) as e:
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/tools/run_debugger_internal_/ |
H A D | Tool.py | 17 from dex.utils.Exceptions import DebuggerException, Error
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/tools/clang_opt_bisect/ |
H A D | Tool.py | 21 from dex.utils.Exceptions import DebuggerException, Error 150 except DebuggerException:
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/ |
H A D | dbgeng.py | 15 from dex.utils.Exceptions import DebuggerException, LoadDebuggerException
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/command/ |
H A D | ParseCommand.py | 39 from dex.utils.Exceptions import CommandParseError, DebuggerException 413 raise DebuggerException(msg)
|