Lines Matching refs:AddRegexCommand
482 … 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()
577 if (up_regex_cmd_ap->AddRegexCommand("^$", "frame select -r 1") && in LoadCommandDictionary()
578 up_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "frame select -r %1")) in LoadCommandDictionary()
595 … if (display_regex_cmd_ap->AddRegexCommand("^(.+)$", "target stop-hook add -o \"expr -- %1\"")) in LoadCommandDictionary()
612 if (undisplay_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "target stop-hook delete %1")) in LoadCommandDictionary()
629 …if (connect_gdb_remote_cmd_ap->AddRegexCommand("^([^:]+:[[:digit:]]+)$", "process connect --plugin… in LoadCommandDictionary()
630 …connect_gdb_remote_cmd_ap->AddRegexCommand("^([[:digit:]]+)$", "process connect --plugin gdb-remot… in LoadCommandDictionary()
647 …if (connect_kdp_remote_cmd_ap->AddRegexCommand("^([^:]+:[[:digit:]]+)$", "process connect --plugin… in LoadCommandDictionary()
648 …connect_kdp_remote_cmd_ap->AddRegexCommand("^(.+)$", "process connect --plugin kdp-remote udp://%1… in LoadCommandDictionary()
668 if (bt_regex_cmd_ap->AddRegexCommand("^([[:digit:]]+)$", "thread backtrace -c %1") && in LoadCommandDictionary()
669 bt_regex_cmd_ap->AddRegexCommand("^-c ([[:digit:]]+)$", "thread backtrace -c %1") && in LoadCommandDictionary()
670 bt_regex_cmd_ap->AddRegexCommand("^all$", "thread backtrace all") && in LoadCommandDictionary()
671 bt_regex_cmd_ap->AddRegexCommand("^$", "thread backtrace")) in LoadCommandDictionary()
688 if (list_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "source list --line %1") && in LoadCommandDictionary()
689 …list_regex_cmd_ap->AddRegexCommand("^(.*[^[:space:]])[[:space:]]*:[[:space:]]*([[:digit:]]+)[[:spa… in LoadCommandDictionary()
690 …list_regex_cmd_ap->AddRegexCommand("^\\*?(0x[[:xdigit:]]+)[[:space:]]*$", "source list --address %… in LoadCommandDictionary()
691 list_regex_cmd_ap->AddRegexCommand("^-[[:space:]]*$", "source list --reverse") && in LoadCommandDictionary()
692 …list_regex_cmd_ap->AddRegexCommand("^-([[:digit:]]+)[[:space:]]*$", "source list --reverse --count… in LoadCommandDictionary()
693 list_regex_cmd_ap->AddRegexCommand("^(.+)$", "source list --name \"%1\"") && in LoadCommandDictionary()
694 list_regex_cmd_ap->AddRegexCommand("^$", "source list")) in LoadCommandDictionary()
711 if (env_regex_cmd_ap->AddRegexCommand("^$", "settings show target.env-vars") && in LoadCommandDictionary()
712 …env_regex_cmd_ap->AddRegexCommand("^([A-Za-z_][A-Za-z_0-9]*=.*)$", "settings set target.env-vars %… in LoadCommandDictionary()
732 if (jump_regex_cmd_ap->AddRegexCommand("^\\*(.*)$", "thread jump --addr %1") && in LoadCommandDictionary()
733 jump_regex_cmd_ap->AddRegexCommand("^([0-9]+)$", "thread jump --line %1") && in LoadCommandDictionary()
734 … jump_regex_cmd_ap->AddRegexCommand("^([^:]+):([0-9]+)$", "thread jump --file %1 --line %2") && in LoadCommandDictionary()
735 jump_regex_cmd_ap->AddRegexCommand("^([+\\-][0-9]+)$", "thread jump --by %1")) in LoadCommandDictionary()