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

  /external/lldb/source/Commands/
CommandObjectMultiword.cpp 37 CommandObject (interpreter, name, help, syntax, flags),
50 CommandObject::CommandMap::iterator pos;
67 int num_matches = CommandObject::AddNamesMatchingPartialString (m_subcommand_dict, sub_cmd, *matches);
84 CommandObject *
118 this->CommandObject::GenerateHelpText (result);
128 this->CommandObject::GenerateHelpText (result);
133 CommandObject *sub_cmd_obj = GetSubcommandObject(sub_command, &matches);
136 // Now call CommandObject::Execute to process and options in 'rest_of_line'. From there
240 CommandObject::AddNamesMatchingPartialString (m_subcommand_dict,
249 CommandObject *cmd_obj = GetSubcommandObject (input.GetArgumentAtIndex(0),
    [all...]
CommandObjectHelp.cpp 65 CommandObject::CommandMap::iterator pos;
66 CommandObject *cmd_obj;
94 CommandObject *sub_cmd_obj = cmd_obj;
107 CommandObject *found_cmd;
176 const CommandArgumentType arg_type = CommandObject::LookupArgumentName (command.GetArgumentAtIndex (0));
180 CommandObject::GetArgumentHelp (output_strm, arg_type, m_interpreter);
221 CommandObject *cmd_obj = m_interpreter.GetCommandObject (input.GetArgumentAtIndex(0));
CommandObjectSyntax.cpp 60 CommandObject::CommandMap::iterator pos;
61 CommandObject *cmd_obj;
CommandObjectWatchpoint.cpp 182 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, eArgTypeWatchpointIDRange);
365 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, eArgTypeWatchpointIDRange);
444 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, eArgTypeWatchpointIDRange);
528 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, eArgTypeWatchpointIDRange);
611 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, eArgTypeWatchpointIDRange);
767 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, eArgTypeWatchpointIDRange);
    [all...]
CommandObjectCommands.cpp 581 // Get CommandObject that is being aliased. The command name is read from the front of raw_command_string.
583 CommandObject *cmd_obj = m_interpreter.GetCommandObjectForCommand (raw_command_string);
606 HandleAliasingRawCommand (const std::string &alias_command, std::string &raw_command_string, CommandObject &cmd_obj, CommandReturnObject &result)
684 CommandObject *cmd_obj = command_obj_sp.get();
685 CommandObject *sub_cmd_obj = NULL;
    [all...]
CommandObjectBreakpoint.cpp 708 CommandObject::AddIDsArgumentData(arg, eArgTypeBreakpointID, eArgTypeBreakpointIDRange);
    [all...]
CommandObjectProcess.cpp     [all...]
  /external/lldb/include/lldb/Interpreter/
CommandObjectMultiword.h 19 #include "lldb/Interpreter/CommandObject.h"
27 class CommandObjectMultiword : public CommandObject
55 virtual CommandObject *
93 CommandObject::CommandMap m_subcommand_dict;
98 class CommandObjectProxy : public CommandObject
112 virtual CommandObject *
127 virtual CommandObject *
CommandInterpreter.h 22 #include "lldb/Interpreter/CommandObject.h"
95 CommandObject *
99 CommandObject *
147 CommandObject *
223 CommandObject *
358 BuildAliasCommandArgs (CommandObject *alias_cmd_obj,
386 FindLongestCommandWord (CommandObject::CommandMap &dict);
469 CommandObject::CommandMap m_command_dict; // Stores basic built-in commands (they cannot be deleted, removed or overwritten).
470 CommandObject::CommandMap m_alias_dict; // Stores user aliases/abbreviations for commands
471 CommandObject::CommandMap m_user_dict; // Stores user-defined command
    [all...]
CommandObject.h 1 //===-- CommandObject.h -----------------------------------------*- C++ -*-===//
28 class CommandObject
79 CommandObject (CommandInterpreter &interpreter,
86 ~CommandObject ();
146 virtual CommandObject *
228 // will fail and CommandObject::GetInvalidTargetDescription() will be
229 // returned as the error. CommandObject subclasses can override the
239 // will fail and CommandObject::GetInvalidProcessDescription() will be
240 // returned as the error. CommandObject subclasses can override the
250 // will fail and CommandObject::GetInvalidThreadDescription() will b
    [all...]
Options.h 168 CommandObject *cmd);
223 /// See CommandObject::HandleCompletions for a description of
278 /// See CommandObject::HandleCompletions for a description of
  /external/lldb/source/Interpreter/
CommandObject.cpp 1 //===-- CommandObject.cpp ---------------------------------------*- C++ -*-===//
12 #include "lldb/Interpreter/CommandObject.h"
41 // CommandObject
44 CommandObject::CommandObject
69 CommandObject::~CommandObject ()
74 CommandObject::GetHelp ()
80 CommandObject::GetHelpLong ()
86 CommandObject::GetSyntax (
    [all...]
CommandInterpreter.cpp 629 CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_str, matches);
633 CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_str, matches);
642 CommandObject::CommandMap::iterator pos;
687 num_cmd_matches = CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_cstr, *matches);
700 num_alias_matches = CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_cstr, *matches);
714 num_user_matches = CommandObject::AddNamesMatchingPartialString (m_user_dict, cmd_cstr, *matches);
    [all...]
Android.mk 16 CommandObject.cpp \
Options.cpp 22 #include "lldb/Interpreter/CommandObject.h"
450 strm.Printf (" <%s>", CommandObject::GetArgumentName (opt_def.argument_type));
456 CommandObject::GetArgumentName (opt_def.argument_type));
470 CommandObject *cmd
667 arg_name_str.Printf ("<%s>", CommandObject::GetArgumentName (arg_type));
938 CommandObject::ArgumentTableEntry *arg_entry = CommandObject::FindArgumentDataByType (opt_defs[opt_defs_index].argument_type);
    [all...]
  /external/lldb/source/API/
SBCommandInterpreter.cpp 353 return CommandObject::GetArgumentTypeAsCString (arg_type);
359 return CommandObject::GetArgumentDescriptionAsCString (arg_type);
370 CommandObject *cmd_obj = m_opaque_ptr->GetCommandObjectForCommand(command_name_str);
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDP.h 77 virtual lldb_private::CommandObject *
ProcessKDP.cpp 26 #include "lldb/Interpreter/CommandObject.h"
    [all...]
  /external/lldb/include/lldb/
lldb-forward.h 65 class CommandObject;
275 typedef std::shared_ptr<lldb_private::CommandObject> CommandObjectSP;
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.h 78 virtual lldb_private::CommandObject *
ProcessGDBRemote.cpp 46 #include "lldb/Interpreter/CommandObject.h"
    [all...]
  /external/lldb/include/lldb/Target/
Process.h     [all...]

Completed in 1211 milliseconds