Home | History | Annotate | Download | only in API

Lines Matching defs:SBCommandInterpreter

1 //===-- SBCommandInterpreter.cpp --------------------------------*- C++ -*-===//
22 #include "lldb/API/SBCommandInterpreter.h"
52 SBCommandInterpreter sb_interpreter(&m_interpreter);
61 SBCommandInterpreter::SBCommandInterpreter (CommandInterpreter *interpreter) :
67 log->Printf ("SBCommandInterpreter::SBCommandInterpreter (interpreter=%p)"
68 " => SBCommandInterpreter(%p)", interpreter, m_opaque_ptr);
71 SBCommandInterpreter::SBCommandInterpreter(const SBCommandInterpreter &rhs) :
76 const SBCommandInterpreter &
77 SBCommandInterpreter::operator = (const SBCommandInterpreter &rhs)
83 SBCommandInterpreter::~SBCommandInterpreter ()
88 SBCommandInterpreter::IsValid() const
95 SBCommandInterpreter::CommandExists (const char *cmd)
103 SBCommandInterpreter::AliasExists (const char *cmd)
111 SBCommandInterpreter::HandleCommand (const char *command_line, SBCommandReturnObject &result, bool add_to_history)
116 log->Printf ("SBCommandInterpreter(%p)::HandleCommand (command=\"%s\", SBCommandReturnObject(%p), add_to_history=%i)",
126 result->AppendError ("SBCommandInterpreter or the command line is not valid");
136 log->Printf ("SBCommandInterpreter(%p)::HandleCommand (command=\"%s\", SBCommandReturnObject(%p): %s, add_to_history=%i) => %i",
144 SBCommandInterpreter::HandleCompletion (const char *current_line,
167 log->Printf ("SBCommandInterpreter(%p)::HandleCompletion (current_line=\"%s\", cursor at: %" PRId64 ", last char at: %" PRId64 ", match_start_point: %d, max_return_elements: %d)",
180 log->Printf ("SBCommandInterpreter(%p)::HandleCompletion - Found %d completions.", m_opaque_ptr, num_completions);
186 SBCommandInterpreter::HandleCompletion (const char *current_line,
198 SBCommandInterpreter::HasCommands ()
206 SBCommandInterpreter::HasAliases ()
214 SBCommandInterpreter::HasAliasOptions ()
222 SBCommandInterpreter::GetProcess ()
239 log->Printf ("SBCommandInterpreter(%p)::GetProcess () => SBProcess(%p)",
247 SBCommandInterpreter::GetDebugger ()
255 log->Printf ("SBCommandInterpreter(%p)::GetDebugger () => SBDebugger(%p)",
263 SBCommandInterpreter::get ()
269 SBCommandInterpreter::ref ()
276 SBCommandInterpreter::reset (lldb_private::CommandInterpreter *interpreter)
282 SBCommandInterpreter::SourceInitFileInHomeDirectory (SBCommandReturnObject &result)
295 result->AppendError ("SBCommandInterpreter is not valid");
301 log->Printf ("SBCommandInterpreter(%p)::SourceInitFileInHomeDirectory (&SBCommandReturnObject(%p))",
307 SBCommandInterpreter::SourceInitFileInCurrentWorkingDirectory (SBCommandReturnObject &result)
320 result->AppendError ("SBCommandInterpreter is not valid");
326 log->Printf ("SBCommandInterpreter(%p)::SourceInitFileInCurrentWorkingDirectory (&SBCommandReturnObject(%p))",
331 SBCommandInterpreter::GetBroadcaster ()
338 log->Printf ("SBCommandInterpreter(%p)::GetBroadcaster() => SBBroadcaster(%p)",
345 SBCommandInterpreter::GetBroadcasterClass ()
351 SBCommandInterpreter::GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type)
357 SBCommandInterpreter::GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type)
363 SBCommandInterpreter::SetCommandOverrideCallback (const char *command_name,
400 SBCommandInterpreter::InitializeSWIG ()
413 SBCommandInterpreter::AddMultiwordCommand (const char* name, const char* help)
424 SBCommandInterpreter::AddCommand (const char* name, lldb::SBCommandPluginInterface* impl, const char* help)