Home | History | Annotate | Download | only in gdb-remote

Lines Matching refs:interpreter

29 #include "lldb/Interpreter/Args.h"
45 #include "lldb/Interpreter/CommandInterpreter.h"
46 #include "lldb/Interpreter/CommandObject.h"
47 #include "lldb/Interpreter/CommandObjectMultiword.h"
48 #include "lldb/Interpreter/CommandReturnObject.h"
3101 CommandObjectProcessGDBRemotePacketHistory(CommandInterpreter &interpreter) :
3102 CommandObjectParsed (interpreter,
3141 CommandObjectProcessGDBRemotePacketSend(CommandInterpreter &interpreter) :
3142 CommandObjectParsed (interpreter,
3199 CommandObjectProcessGDBRemotePacketMonitor(CommandInterpreter &interpreter) :
3200 CommandObjectRaw (interpreter,
3252 CommandObjectProcessGDBRemotePacket(CommandInterpreter &interpreter) :
3253 CommandObjectMultiword (interpreter,
3258 LoadSubCommand ("history", CommandObjectSP (new CommandObjectProcessGDBRemotePacketHistory (interpreter)));
3259 LoadSubCommand ("send", CommandObjectSP (new CommandObjectProcessGDBRemotePacketSend (interpreter)));
3260 LoadSubCommand ("monitor", CommandObjectSP (new CommandObjectProcessGDBRemotePacketMonitor (interpreter)));
3271 CommandObjectMultiwordProcessGDBRemote (CommandInterpreter &interpreter) :
3272 CommandObjectMultiword (interpreter,
3277 LoadSubCommand ("packet", CommandObjectSP (new CommandObjectProcessGDBRemotePacket (interpreter)));