Searched refs:sub_command (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectLog.cpp318 auto sub_command = args[0].ref(); variable
320 if (sub_command.equals_lower("enable")) {
323 } else if (sub_command.equals_lower("disable")) {
327 } else if (sub_command.equals_lower("dump")) {
330 } else if (sub_command.equals_lower("reset")) {
335 auto sub_command = args[0].ref(); variable
338 if (sub_command.equals_lower("enable")) {
347 } else if (sub_command.equals_lower("increment")) {
H A DCommandObjectHelp.cpp106 // Loop down through sub_command dictionaries until we find the command
108 std::string sub_command; local
110 sub_command = entry.ref();
121 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches);
148 m_interpreter.GetCommandPrefix(), sub_command.c_str());
155 m_interpreter.GetCommandPrefix(), sub_command.c_str());
H A DCommandObjectMultiword.cpp95 auto sub_command = args[0].ref(); local
96 if (sub_command.empty()) {
101 if (sub_command.equals_lower("help")) {
114 CommandObject *sub_cmd_obj = GetSubcommandObject(sub_command, &matches);
135 error_msg.append(sub_command);
H A DCommandObjectCommands.cpp688 auto sub_command = args[0].ref(); local
689 assert(!sub_command.empty());
690 subcommand_obj_sp = cmd_obj->GetSubcommandSP(sub_command);
702 args.Shift(); // Shift the sub_command word off the argument vector.

Completed in 64 milliseconds