HomeSort by relevance Sort by last modified time
    Searched refs:AddRegexCommand (Results 1 - 4 of 4) sorted by null

  /external/lldb/include/lldb/Interpreter/
CommandObjectRegexCommand.h 43 AddRegexCommand (const char *re_cstr, const char *command_cstr);
  /external/lldb/source/Interpreter/
CommandInterpreter.cpp 416 success = break_regex_cmd_ap->AddRegexCommand (break_regexes[i][0], break_regexes[i][1]);
420 success = break_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full");
447 success = tbreak_regex_cmd_ap->AddRegexCommand (break_regexes[i][0], buffer);
451 success = tbreak_regex_cmd_ap->AddRegexCommand("^$", "breakpoint list --full");
468 if (attach_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "process attach --pid %1") &&
469 attach_regex_cmd_ap->AddRegexCommand("^(-.*|.* -.*)$", "process attach %1") && // Any options that are specified get passed to 'process attach'
470 attach_regex_cmd_ap->AddRegexCommand("^(.+)$", "process attach --name '%1'") &&
471 attach_regex_cmd_ap->AddRegexCommand("^$", "process attach"))
485 if (down_regex_cmd_ap->AddRegexCommand("^$", "frame select -r -1") &&
486 down_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r -%1")
    [all...]
CommandObjectRegexCommand.cpp 108 CommandObjectRegexCommand::AddRegexCommand (const char *re_cstr, const char *command_cstr)
  /external/lldb/source/Commands/
CommandObjectCommands.cpp     [all...]

Completed in 497 milliseconds