Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDCommandInterpreter.cpp482 … success = break_regex_cmd_ap->AddRegexCommand (break_regexes[i][0], break_regexes[i][1]); in LoadCommandDictionary()
486 success = break_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full"); in LoadCommandDictionary()
516 success = tbreak_regex_cmd_ap->AddRegexCommand (break_regexes[i][0], buffer); in LoadCommandDictionary()
520 success = tbreak_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full"); in LoadCommandDictionary()
539 … if (attach_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "process attach --pid %1") && in LoadCommandDictionary()
540 …attach_regex_cmd_ap->AddRegexCommand("^(-.*|.* -.*)$", "process attach %1") && // Any options that… in LoadCommandDictionary()
541 attach_regex_cmd_ap->AddRegexCommand("^(.+)$", "process attach --name '%1'") && in LoadCommandDictionary()
542 attach_regex_cmd_ap->AddRegexCommand("^$", "process attach")) in LoadCommandDictionary()
559 if (down_regex_cmd_ap->AddRegexCommand("^$", "frame select -r -1") && in LoadCommandDictionary()
560 down_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r -%1")) in LoadCommandDictionary()
[all …]
HDCommandObjectRegexCommand.cpp108 CommandObjectRegexCommand::AddRegexCommand (const char *re_cstr, const char *command_cstr) in AddRegexCommand() function in CommandObjectRegexCommand
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDCommandObjectRegexCommand.h47 AddRegexCommand (const char *re_cstr, const char *command_cstr);
/NextBSD/contrib/llvm/tools/lldb/source/Commands/
HDCommandObjectCommands.cpp1222 m_regex_cmd_ap->AddRegexCommand (regex.c_str(), in AppendRegexSubstitution()