Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp623 success = break_regex_cmd_up->AddRegexCommand(break_regexes[i][0], in LoadCommandDictionary()
629 break_regex_cmd_up->AddRegexCommand("^$", "breakpoint list --full"); in LoadCommandDictionary()
680 tbreak_regex_cmd_up->AddRegexCommand(break_regexes[i][0], command); in LoadCommandDictionary()
685 tbreak_regex_cmd_up->AddRegexCommand("^$", "breakpoint list --full"); in LoadCommandDictionary()
699 if (attach_regex_cmd_up->AddRegexCommand("^([0-9]+)[[:space:]]*$", in LoadCommandDictionary()
701 attach_regex_cmd_up->AddRegexCommand( in LoadCommandDictionary()
705 attach_regex_cmd_up->AddRegexCommand("^(.+)$", in LoadCommandDictionary()
707 attach_regex_cmd_up->AddRegexCommand("^$", "process attach")) { in LoadCommandDictionary()
721 if (down_regex_cmd_up->AddRegexCommand("^$", "frame select -r -1") && in LoadCommandDictionary()
722 down_regex_cmd_up->AddRegexCommand("^([0-9]+)$", in LoadCommandDictionary()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectRegexCommand.h33 bool AddRegexCommand(llvm::StringRef re_cstr, llvm::StringRef command_cstr);
H A DCommandObjectRegexCommand.cpp91 bool CommandObjectRegexCommand::AddRegexCommand(llvm::StringRef re_cstr, in AddRegexCommand() function in CommandObjectRegexCommand
H A DCommandObjectCommands.cpp1012 m_regex_cmd_up->AddRegexCommand(regex, subst); in AppendRegexSubstitution()