Home
last modified time | relevance | path

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

/external/lldb/source/Interpreter/
DCommandInterpreter.cpp461 attach_regex_cmd_ap(new CommandObjectRegexCommand (*this, in LoadCommandDictionary() local
466 if (attach_regex_cmd_ap.get()) in LoadCommandDictionary()
468 … if (attach_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "process attach --pid %1") && in LoadCommandDictionary()
469attach_regex_cmd_ap->AddRegexCommand("^(-.*|.* -.*)$", "process attach %1") && // Any options that… in LoadCommandDictionary()
470 attach_regex_cmd_ap->AddRegexCommand("^(.+)$", "process attach --name '%1'") && in LoadCommandDictionary()
471 attach_regex_cmd_ap->AddRegexCommand("^$", "process attach")) in LoadCommandDictionary()
473 CommandObjectSP attach_regex_cmd_sp(attach_regex_cmd_ap.release()); in LoadCommandDictionary()