Home
last modified time | relevance | path

Searched refs:CommandObjectSP (Results 1 – 25 of 30) sorted by relevance

12

/external/lldb/source/Interpreter/
DCommandInterpreter.cpp153 CommandObjectSP cmd_obj_sp = GetCommandSPExact ("quit", false); in Initialize()
368 m_command_dict["apropos"] = CommandObjectSP (new CommandObjectApropos (*this)); in LoadCommandDictionary()
369 m_command_dict["breakpoint"]= CommandObjectSP (new CommandObjectMultiwordBreakpoint (*this)); in LoadCommandDictionary()
370 m_command_dict["command"] = CommandObjectSP (new CommandObjectMultiwordCommands (*this)); in LoadCommandDictionary()
371 m_command_dict["disassemble"] = CommandObjectSP (new CommandObjectDisassemble (*this)); in LoadCommandDictionary()
372 m_command_dict["expression"]= CommandObjectSP (new CommandObjectExpression (*this)); in LoadCommandDictionary()
373 m_command_dict["frame"] = CommandObjectSP (new CommandObjectMultiwordFrame (*this)); in LoadCommandDictionary()
374 m_command_dict["help"] = CommandObjectSP (new CommandObjectHelp (*this)); in LoadCommandDictionary()
375 m_command_dict["log"] = CommandObjectSP (new CommandObjectLog (*this)); in LoadCommandDictionary()
376 m_command_dict["memory"] = CommandObjectSP (new CommandObjectMemory (*this)); in LoadCommandDictionary()
[all …]
/external/lldb/include/lldb/Interpreter/
DCommandInterpreter.h83 const lldb::CommandObjectSP &cmd_sp,
88 const lldb::CommandObjectSP &cmd_sp,
91 lldb::CommandObjectSP
114 lldb::CommandObjectSP& command_obj_sp);
136 ProcessAliasOptionsArgs (lldb::CommandObjectSP &cmd_obj_sp,
456 lldb::CommandObjectSP
DCommandObjectMultiword.h47 const lldb::CommandObjectSP& command_obj);
52 virtual lldb::CommandObjectSP
124 virtual lldb::CommandObjectSP
138 const lldb::CommandObjectSP& command_obj);
DCommandObject.h77 typedef std::map<std::string, lldb::CommandObjectSP> CommandMap;
140 virtual lldb::CommandObjectSP
143 return lldb::CommandObjectSP();
172 const lldb::CommandObjectSP& command_obj) in LoadSubCommand()
/external/lldb/source/Commands/
DCommandObjectCommands.cpp613CommandObjectSP cmd_obj_sp = m_interpreter.GetCommandSPExact (cmd_obj.GetCommandName(), false); in HandleAliasingRawCommand()
679CommandObjectSP command_obj_sp(m_interpreter.GetCommandSPExact (actual_command.c_str(), true)); in HandleAliasingNormalCommand()
680 CommandObjectSP subcommand_obj_sp; in HandleAliasingNormalCommand()
718CommandObjectSP tmp_sp = m_interpreter.GetCommandSPExact (cmd_obj->GetCommandName(), false); in HandleAliasingNormalCommand()
1070 CommandObjectSP cmd_sp (m_regex_cmd_ap.release()); in AddRegexCommandToInterpreter()
1729 CommandObjectSP command_obj_sp(new CommandObjectPythonFunction(m_interpreter, in DoneHandler()
1798 CommandObjectSP new_cmd(new CommandObjectPythonFunction(m_interpreter, in DoExecute()
1984 LoadSubCommand ("add", CommandObjectSP (new CommandObjectCommandsScriptAdd (interpreter))); in CommandObjectMultiwordCommandsScript()
1985 …LoadSubCommand ("delete", CommandObjectSP (new CommandObjectCommandsScriptDelete (interpreter))); in CommandObjectMultiwordCommandsScript()
1986 … LoadSubCommand ("clear", CommandObjectSP (new CommandObjectCommandsScriptClear (interpreter))); in CommandObjectMultiwordCommandsScript()
[all …]
DCommandObjectMultiword.cpp46 CommandObjectSP
49 CommandObjectSP return_cmd_sp; in GetSubcommandSP()
94 const CommandObjectSP& cmd_obj in LoadSubCommand()
382 lldb::CommandObjectSP
388 return lldb::CommandObjectSP(); in GetSubcommandSP()
416 const lldb::CommandObjectSP& command_sp) in LoadSubCommand()
DCommandObjectPlatform.cpp887 … LoadSubCommand ("launch", CommandObjectSP (new CommandObjectPlatformProcessLaunch (interpreter))); in CommandObjectPlatformProcess()
888 … LoadSubCommand ("info" , CommandObjectSP (new CommandObjectPlatformProcessInfo (interpreter))); in CommandObjectPlatformProcess()
889 … LoadSubCommand ("list" , CommandObjectSP (new CommandObjectPlatformProcessList (interpreter))); in CommandObjectPlatformProcess()
972 LoadSubCommand ("select", CommandObjectSP (new CommandObjectPlatformSelect (interpreter))); in CommandObjectPlatform()
973 LoadSubCommand ("list" , CommandObjectSP (new CommandObjectPlatformList (interpreter))); in CommandObjectPlatform()
974 LoadSubCommand ("status", CommandObjectSP (new CommandObjectPlatformStatus (interpreter))); in CommandObjectPlatform()
975 LoadSubCommand ("connect", CommandObjectSP (new CommandObjectPlatformConnect (interpreter))); in CommandObjectPlatform()
976 …LoadSubCommand ("disconnect", CommandObjectSP (new CommandObjectPlatformDisconnect (interpreter))… in CommandObjectPlatform()
977 LoadSubCommand ("process", CommandObjectSP (new CommandObjectPlatformProcess (interpreter))); in CommandObjectPlatform()
978 LoadSubCommand ("shell", CommandObjectSP (new CommandObjectPlatformShell (interpreter))); in CommandObjectPlatform()
DCommandObjectProcess.cpp1927 … LoadSubCommand ("attach", CommandObjectSP (new CommandObjectProcessAttach (interpreter))); in CommandObjectMultiwordProcess()
1928 … LoadSubCommand ("launch", CommandObjectSP (new CommandObjectProcessLaunch (interpreter))); in CommandObjectMultiwordProcess()
1929 … LoadSubCommand ("continue", CommandObjectSP (new CommandObjectProcessContinue (interpreter))); in CommandObjectMultiwordProcess()
1930 … LoadSubCommand ("connect", CommandObjectSP (new CommandObjectProcessConnect (interpreter))); in CommandObjectMultiwordProcess()
1931 … LoadSubCommand ("detach", CommandObjectSP (new CommandObjectProcessDetach (interpreter))); in CommandObjectMultiwordProcess()
1932 … LoadSubCommand ("load", CommandObjectSP (new CommandObjectProcessLoad (interpreter))); in CommandObjectMultiwordProcess()
1933 … LoadSubCommand ("unload", CommandObjectSP (new CommandObjectProcessUnload (interpreter))); in CommandObjectMultiwordProcess()
1934 … LoadSubCommand ("signal", CommandObjectSP (new CommandObjectProcessSignal (interpreter))); in CommandObjectMultiwordProcess()
1935 … LoadSubCommand ("handle", CommandObjectSP (new CommandObjectProcessHandle (interpreter))); in CommandObjectMultiwordProcess()
1936 … LoadSubCommand ("status", CommandObjectSP (new CommandObjectProcessStatus (interpreter))); in CommandObjectMultiwordProcess()
[all …]
DCommandObjectSettings.cpp1195 LoadSubCommand ("set", CommandObjectSP (new CommandObjectSettingsSet (interpreter))); in CommandObjectMultiwordSettings()
1196 LoadSubCommand ("show", CommandObjectSP (new CommandObjectSettingsShow (interpreter))); in CommandObjectMultiwordSettings()
1197 LoadSubCommand ("list", CommandObjectSP (new CommandObjectSettingsList (interpreter))); in CommandObjectMultiwordSettings()
1198 … LoadSubCommand ("remove", CommandObjectSP (new CommandObjectSettingsRemove (interpreter))); in CommandObjectMultiwordSettings()
1199 …LoadSubCommand ("replace", CommandObjectSP (new CommandObjectSettingsReplace (interpreter))); in CommandObjectMultiwordSettings()
1200 …LoadSubCommand ("insert-before", CommandObjectSP (new CommandObjectSettingsInsertBefore (interpret… in CommandObjectMultiwordSettings()
1201 …LoadSubCommand ("insert-after", CommandObjectSP (new CommandObjectSettingsInsertAfter (interprete… in CommandObjectMultiwordSettings()
1202 … LoadSubCommand ("append", CommandObjectSP (new CommandObjectSettingsAppend (interpreter))); in CommandObjectMultiwordSettings()
1203 … LoadSubCommand ("clear", CommandObjectSP (new CommandObjectSettingsClear (interpreter))); in CommandObjectMultiwordSettings()
DCommandObjectThread.cpp1475 LoadSubCommand ("backtrace", CommandObjectSP (new CommandObjectThreadBacktrace (interpreter))); in CommandObjectMultiwordThread()
1476 LoadSubCommand ("continue", CommandObjectSP (new CommandObjectThreadContinue (interpreter))); in CommandObjectMultiwordThread()
1477 LoadSubCommand ("list", CommandObjectSP (new CommandObjectThreadList (interpreter))); in CommandObjectMultiwordThread()
1478 LoadSubCommand ("return", CommandObjectSP (new CommandObjectThreadReturn (interpreter))); in CommandObjectMultiwordThread()
1479 LoadSubCommand ("select", CommandObjectSP (new CommandObjectThreadSelect (interpreter))); in CommandObjectMultiwordThread()
1480 LoadSubCommand ("until", CommandObjectSP (new CommandObjectThreadUntil (interpreter))); in CommandObjectMultiwordThread()
1481 LoadSubCommand ("step-in", CommandObjectSP (new CommandObjectThreadStepWithTypeAndScope ( in CommandObjectMultiwordThread()
1489 LoadSubCommand ("step-out", CommandObjectSP (new CommandObjectThreadStepWithTypeAndScope ( in CommandObjectMultiwordThread()
1497 LoadSubCommand ("step-over", CommandObjectSP (new CommandObjectThreadStepWithTypeAndScope ( in CommandObjectMultiwordThread()
1505 LoadSubCommand ("step-inst", CommandObjectSP (new CommandObjectThreadStepWithTypeAndScope ( in CommandObjectMultiwordThread()
[all …]
DCommandObjectLog.cpp488 LoadSubCommand ("enable", CommandObjectSP (new CommandObjectLogEnable (interpreter))); in CommandObjectLog()
489 LoadSubCommand ("disable", CommandObjectSP (new CommandObjectLogDisable (interpreter))); in CommandObjectLog()
490 LoadSubCommand ("list", CommandObjectSP (new CommandObjectLogList (interpreter))); in CommandObjectLog()
491 LoadSubCommand ("timers", CommandObjectSP (new CommandObjectLogTimer (interpreter))); in CommandObjectLog()
DCommandObjectWatchpoint.cpp1342 …LoadSubCommand ("variable", CommandObjectSP (new CommandObjectWatchpointSetVariable (interpreter… in CommandObjectWatchpointSet()
1343 …LoadSubCommand ("expression", CommandObjectSP (new CommandObjectWatchpointSetExpression (interpret… in CommandObjectWatchpointSet()
1363 CommandObjectSP list_command_object (new CommandObjectWatchpointList (interpreter)); in CommandObjectMultiwordWatchpoint()
1364 CommandObjectSP enable_command_object (new CommandObjectWatchpointEnable (interpreter)); in CommandObjectMultiwordWatchpoint()
1365 CommandObjectSP disable_command_object (new CommandObjectWatchpointDisable (interpreter)); in CommandObjectMultiwordWatchpoint()
1366 CommandObjectSP delete_command_object (new CommandObjectWatchpointDelete (interpreter)); in CommandObjectMultiwordWatchpoint()
1367 CommandObjectSP ignore_command_object (new CommandObjectWatchpointIgnore (interpreter)); in CommandObjectMultiwordWatchpoint()
1368 CommandObjectSP command_command_object (new CommandObjectWatchpointCommand (interpreter)); in CommandObjectMultiwordWatchpoint()
1369 CommandObjectSP modify_command_object (new CommandObjectWatchpointModify (interpreter)); in CommandObjectMultiwordWatchpoint()
1370 CommandObjectSP set_command_object (new CommandObjectWatchpointSet (interpreter)); in CommandObjectMultiwordWatchpoint()
DCommandObjectType.cpp3988 LoadSubCommand ("add", CommandObjectSP (new CommandObjectTypeFormatAdd (interpreter))); in CommandObjectTypeFormat()
3989 LoadSubCommand ("clear", CommandObjectSP (new CommandObjectTypeFormatClear (interpreter))); in CommandObjectTypeFormat()
3990 … LoadSubCommand ("delete", CommandObjectSP (new CommandObjectTypeFormatDelete (interpreter))); in CommandObjectTypeFormat()
3991 LoadSubCommand ("list", CommandObjectSP (new CommandObjectTypeFormatList (interpreter))); in CommandObjectTypeFormat()
4011 … LoadSubCommand ("add", CommandObjectSP (new CommandObjectTypeSynthAdd (interpreter))); in CommandObjectTypeSynth()
4012 … LoadSubCommand ("clear", CommandObjectSP (new CommandObjectTypeSynthClear (interpreter))); in CommandObjectTypeSynth()
4013 …LoadSubCommand ("delete", CommandObjectSP (new CommandObjectTypeSynthDelete (interpreter))); in CommandObjectTypeSynth()
4014 … LoadSubCommand ("list", CommandObjectSP (new CommandObjectTypeSynthList (interpreter))); in CommandObjectTypeSynth()
4034 … LoadSubCommand ("add", CommandObjectSP (new CommandObjectTypeFilterAdd (interpreter))); in CommandObjectTypeFilter()
4035 …LoadSubCommand ("clear", CommandObjectSP (new CommandObjectTypeFilterClear (interpreter))); in CommandObjectTypeFilter()
[all …]
DCommandObjectTarget.cpp2532 …LoadSubCommand ("symtab", CommandObjectSP (new CommandObjectTargetModulesDumpSymtab (interpre… in CommandObjectTargetModulesDump()
2533 …LoadSubCommand ("sections", CommandObjectSP (new CommandObjectTargetModulesDumpSections (interp… in CommandObjectTargetModulesDump()
2534 …LoadSubCommand ("symfile", CommandObjectSP (new CommandObjectTargetModulesDumpSymfile (interpr… in CommandObjectTargetModulesDump()
2535 …LoadSubCommand ("line-table", CommandObjectSP (new CommandObjectTargetModulesDumpLineTable (inter… in CommandObjectTargetModulesDump()
4150 …LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetModulesSearchPathsAdd (interpre… in CommandObjectTargetModulesImageSearchPaths()
4151 …LoadSubCommand ("clear", CommandObjectSP (new CommandObjectTargetModulesSearchPathsClear (interp… in CommandObjectTargetModulesImageSearchPaths()
4152 …LoadSubCommand ("insert", CommandObjectSP (new CommandObjectTargetModulesSearchPathsInsert (inter… in CommandObjectTargetModulesImageSearchPaths()
4153 …LoadSubCommand ("list", CommandObjectSP (new CommandObjectTargetModulesSearchPathsList (interpr… in CommandObjectTargetModulesImageSearchPaths()
4154 …LoadSubCommand ("query", CommandObjectSP (new CommandObjectTargetModulesSearchPathsQuery (interp… in CommandObjectTargetModulesImageSearchPaths()
4182 …LoadSubCommand ("add", CommandObjectSP (new CommandObjectTargetModulesAdd (interpreter))); in CommandObjectTargetModules()
[all …]
DCommandObjectBreakpoint.cpp1738 CommandObjectSP list_command_object (new CommandObjectBreakpointList (interpreter)); in CommandObjectMultiwordBreakpoint()
1739 CommandObjectSP enable_command_object (new CommandObjectBreakpointEnable (interpreter)); in CommandObjectMultiwordBreakpoint()
1740 CommandObjectSP disable_command_object (new CommandObjectBreakpointDisable (interpreter)); in CommandObjectMultiwordBreakpoint()
1741 CommandObjectSP clear_command_object (new CommandObjectBreakpointClear (interpreter)); in CommandObjectMultiwordBreakpoint()
1742 CommandObjectSP delete_command_object (new CommandObjectBreakpointDelete (interpreter)); in CommandObjectMultiwordBreakpoint()
1743 CommandObjectSP set_command_object (new CommandObjectBreakpointSet (interpreter)); in CommandObjectMultiwordBreakpoint()
1744 CommandObjectSP command_command_object (new CommandObjectBreakpointCommand (interpreter)); in CommandObjectMultiwordBreakpoint()
1745 CommandObjectSP modify_command_object (new CommandObjectBreakpointModify(interpreter)); in CommandObjectMultiwordBreakpoint()
DCommandObjectFrame.cpp616 LoadSubCommand ("info", CommandObjectSP (new CommandObjectFrameInfo (interpreter))); in CommandObjectMultiwordFrame()
617 LoadSubCommand ("select", CommandObjectSP (new CommandObjectFrameSelect (interpreter))); in CommandObjectMultiwordFrame()
618 LoadSubCommand ("variable", CommandObjectSP (new CommandObjectFrameVariable (interpreter))); in CommandObjectMultiwordFrame()
DCommandObjectPlugin.cpp117 LoadSubCommand ("load", CommandObjectSP (new CommandObjectPluginLoad (interpreter))); in CommandObjectPlugin()
DCommandObjectWatchpointCommand.cpp833 CommandObjectSP add_command_object (new CommandObjectWatchpointCommandAdd (interpreter)); in CommandObjectWatchpointCommand()
834 CommandObjectSP delete_command_object (new CommandObjectWatchpointCommandDelete (interpreter)); in CommandObjectWatchpointCommand()
835 CommandObjectSP list_command_object (new CommandObjectWatchpointCommandList (interpreter)); in CommandObjectWatchpointCommand()
DCommandObjectRegister.cpp489 LoadSubCommand ("read", CommandObjectSP (new CommandObjectRegisterRead (interpreter))); in CommandObjectRegister()
490 LoadSubCommand ("write", CommandObjectSP (new CommandObjectRegisterWrite (interpreter))); in CommandObjectRegister()
DCommandObjectBreakpointCommand.cpp898 CommandObjectSP add_command_object (new CommandObjectBreakpointCommandAdd (interpreter)); in CommandObjectBreakpointCommand()
899 CommandObjectSP delete_command_object (new CommandObjectBreakpointCommandDelete (interpreter)); in CommandObjectBreakpointCommand()
900 CommandObjectSP list_command_object (new CommandObjectBreakpointCommandList (interpreter)); in CommandObjectBreakpointCommand()
/external/lldb/source/API/
DSBCommandInterpreter.cpp417 lldb::CommandObjectSP new_command_sp(new_command); in AddMultiwordCommand()
426 lldb::CommandObjectSP new_command_sp; in AddCommand()
437 SBCommand::SBCommand (lldb::CommandObjectSP cmd_sp) : m_opaque_sp (cmd_sp) in SBCommand()
471 lldb::CommandObjectSP new_command_sp(new_command); in AddMultiwordCommand()
484 lldb::CommandObjectSP new_command_sp; in AddCommand()
/external/lldb/include/lldb/API/
DSBCommandInterpreter.h186 SBCommand (lldb::CommandObjectSP cmd_sp);
188 lldb::CommandObjectSP m_opaque_sp;
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
DProcessKDP.h253 lldb::CommandObjectSP m_command_sp;
DProcessKDP.cpp1099 … LoadSubCommand ("send", CommandObjectSP (new CommandObjectProcessKDPPacketSend (interpreter))); in CommandObjectProcessKDPPacket()
1116 … LoadSubCommand ("packet", CommandObjectSP (new CommandObjectProcessKDPPacket (interpreter))); in CommandObjectMultiwordProcessKDP()
/external/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.h335 lldb::CommandObjectSP m_command_sp;

12