Lines Matching refs:interpreter
24 #include "lldb/Interpreter/Args.h"
25 #include "lldb/Interpreter/Options.h"
26 #include "lldb/Interpreter/CommandInterpreter.h"
27 #include "lldb/Interpreter/CommandReturnObject.h"
40 CommandObjectProcessLaunchOrAttach (CommandInterpreter &interpreter,
46 CommandObjectParsed (interpreter, name, help, syntax, flags),
120 CommandObjectProcessLaunch (CommandInterpreter &interpreter) :
121 CommandObjectProcessLaunchOrAttach (interpreter,
127 m_options (interpreter)
389 CommandOptions (CommandInterpreter &interpreter) :
390 Options(interpreter)
523 CommandObjectProcessAttach (CommandInterpreter &interpreter) :
524 CommandObjectProcessLaunchOrAttach (interpreter,
530 m_options (interpreter)
551 // and the target actually stopping. So even if the interpreter is set to be asynchronous, we wait for the stop
633 // interpreter with a state eStateAttaching. Make sure we handle that correctly.
722 CommandObjectProcessContinue (CommandInterpreter &interpreter) :
723 CommandObjectParsed (interpreter,
731 m_options(interpreter)
746 CommandOptions (CommandInterpreter &interpreter) :
747 Options(interpreter)
911 CommandOptions (CommandInterpreter &interpreter) :
912 Options (interpreter)
970 CommandObjectProcessDetach (CommandInterpreter &interpreter) :
971 CommandObjectParsed (interpreter,
978 m_options(interpreter)
1051 CommandOptions (CommandInterpreter &interpreter) :
1052 Options(interpreter)
1102 CommandObjectProcessConnect (CommandInterpreter &interpreter) :
1103 CommandObjectParsed (interpreter,
1108 m_options (interpreter)
1219 CommandObjectProcessPlugin (CommandInterpreter &interpreter) :
1220 CommandObjectProxy (interpreter,
1252 CommandObjectProcessLoad (CommandInterpreter &interpreter) :
1253 CommandObjectParsed (interpreter,
1309 CommandObjectProcessUnload (CommandInterpreter &interpreter) :
1310 CommandObjectParsed (interpreter,
1373 CommandObjectProcessSignal (CommandInterpreter &interpreter) :
1374 CommandObjectParsed (interpreter,
1455 CommandObjectProcessInterrupt (CommandInterpreter &interpreter) :
1456 CommandObjectParsed (interpreter,
1517 CommandObjectProcessKill (CommandInterpreter &interpreter) :
1518 CommandObjectParsed (interpreter,
1577 CommandObjectProcessStatus (CommandInterpreter &interpreter) :
1578 CommandObjectParsed (interpreter,
1625 CommandOptions (CommandInterpreter &interpreter) :
1626 Options (interpreter)
1685 CommandObjectProcessHandle (CommandInterpreter &interpreter) :
1686 CommandObjectParsed (interpreter,
1690 m_options (interpreter)
1921 CommandObjectMultiwordProcess::CommandObjectMultiwordProcess (CommandInterpreter &interpreter) :
1922 CommandObjectMultiword (interpreter,
1927 LoadSubCommand ("attach", CommandObjectSP (new CommandObjectProcessAttach (interpreter)));
1928 LoadSubCommand ("launch", CommandObjectSP (new CommandObjectProcessLaunch (interpreter)));
1929 LoadSubCommand ("continue", CommandObjectSP (new CommandObjectProcessContinue (interpreter)));
1930 LoadSubCommand ("connect", CommandObjectSP (new CommandObjectProcessConnect (interpreter)));
1931 LoadSubCommand ("detach", CommandObjectSP (new CommandObjectProcessDetach (interpreter)));
1932 LoadSubCommand ("load", CommandObjectSP (new CommandObjectProcessLoad (interpreter)));
1933 LoadSubCommand ("unload", CommandObjectSP (new CommandObjectProcessUnload (interpreter)));
1934 LoadSubCommand ("signal", CommandObjectSP (new CommandObjectProcessSignal (interpreter)));
1935 LoadSubCommand ("handle", CommandObjectSP (new CommandObjectProcessHandle (interpreter)));
1936 LoadSubCommand ("status", CommandObjectSP (new CommandObjectProcessStatus (interpreter)));
1937 LoadSubCommand ("interrupt", CommandObjectSP (new CommandObjectProcessInterrupt (interpreter)));
1938 LoadSubCommand ("kill", CommandObjectSP (new CommandObjectProcessKill (interpreter)));
1939 LoadSubCommand ("plugin", CommandObjectSP (new CommandObjectProcessPlugin (interpreter)));