Home
last modified time | relevance | path

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

/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/utils/
H A DExceptions.py20 class DebuggerException(Dexception): class
24 super(DebuggerException, self).__init__(msg)
32 class LoadDebuggerException(DebuggerException):
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/DebuggerControllers/
H A DDefaultController.py15 from dex.utils.Exceptions import DebuggerException, LoadDebuggerException
38 except DebuggerException:
39 raise LoadDebuggerException(DebuggerException.msg)
108 raise DebuggerException(
H A DConditionalController.py18 from dex.utils.Exceptions import DebuggerException
98 raise DebuggerException('Missing DexLimitSteps commands, cannot conditionally step.')
131 raise DebuggerException('DexLimitSteps commands are not supported by dbgeng')
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/list_debuggers/
H A DTool.py14 from dex.utils.Exceptions import DebuggerException, Error
38 except DebuggerException as e:
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/lldb/
H A DLLDB.py18 from dex.utils.Exceptions import DebuggerException, LoadDebuggerException
115 raise DebuggerException(
176 raise DebuggerException('could not launch process')
178 raise DebuggerException('multiple threads not supported')
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/
H A DDebuggerBase.py18 from dex.utils.Exceptions import DebuggerException
50 except DebuggerException:
57 except DebuggerException:
H A DDebuggers.py22 from dex.utils.Exceptions import DebuggerException
185 raise DebuggerException(e)
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/run_debugger_internal_/
H A DTool.py17 from dex.utils.Exceptions import DebuggerException, Error
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/test/
H A DTool.py23 from dex.utils.Exceptions import DebuggerException
251 except (BuildScriptException, DebuggerException,
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/clang_opt_bisect/
H A DTool.py22 from dex.utils.Exceptions import DebuggerException, Error
146 except DebuggerException:
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/command/
H A DParseCommand.py36 from dex.utils.Exceptions import CommandParseError, DebuggerException
376 raise DebuggerException(msg)
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/
H A Ddbgeng.py15 from dex.utils.Exceptions import DebuggerException, LoadDebuggerException