Home
last modified time | relevance | path

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

/external/rust/crates/gdbstub/src/protocol/
Dcommands.rs53 ) -> Result<Command<'a>, CommandParseError<'a>> {
55 return Err(CommandParseError::Empty);
76 .ok_or(CommandParseError::MalformedCommand($name))?;
97 pub enum CommandParseError<'a> { enum
/external/llvm-project/debuginfo-tests/dexter/dex/command/
DParseCommand.py18 from dex.utils.Exceptions import CommandParseError
31 from dex.utils.Exceptions import CommandParseError, DebuggerException
179 def format_parse_err(msg: str, path: str, lines: list, point: TextPoint) -> CommandParseError:
180 err = CommandParseError()
292 except CommandParseError as e:
387 with self.assertRaises(CommandParseError):
/external/llvm-project/debuginfo-tests/dexter/dex/utils/
DExceptions.py45 class CommandParseError(Dexception): class
49 super(CommandParseError, self).__init__(*args, **kwargs)