Lines Matching refs:ScriptInterpreterLua
28 LLDB_PLUGIN_DEFINE(ScriptInterpreterLua)
40 ScriptInterpreterLua &script_interpreter, in IOHandlerLuaInterpreter()
139 ScriptInterpreterLua &m_script_interpreter;
145 ScriptInterpreterLua::ScriptInterpreterLua(Debugger &debugger) in ScriptInterpreterLua() function in ScriptInterpreterLua
149 ScriptInterpreterLua::~ScriptInterpreterLua() = default;
151 bool ScriptInterpreterLua::ExecuteOneLine(llvm::StringRef command, in ExecuteOneLine()
194 void ScriptInterpreterLua::ExecuteInterpreterLoop() { in ExecuteInterpreterLoop()
209 bool ScriptInterpreterLua::LoadScriptingModule( in LoadScriptingModule()
223 void ScriptInterpreterLua::Initialize() { in Initialize()
233 void ScriptInterpreterLua::Terminate() {} in Terminate()
235 llvm::Error ScriptInterpreterLua::EnterSession(user_id_t debugger_id) { in EnterSession()
248 llvm::Error ScriptInterpreterLua::LeaveSession() { in LeaveSession()
262 bool ScriptInterpreterLua::BreakpointCallbackFunction( in BreakpointCallbackFunction()
277 ScriptInterpreterLua *lua_interpreter = static_cast<ScriptInterpreterLua *>( in BreakpointCallbackFunction()
292 bool ScriptInterpreterLua::WatchpointCallbackFunction( in WatchpointCallbackFunction()
305 ScriptInterpreterLua *lua_interpreter = static_cast<ScriptInterpreterLua *>( in WatchpointCallbackFunction()
319 void ScriptInterpreterLua::CollectDataForBreakpointCommandCallback( in CollectDataForBreakpointCommandCallback()
328 void ScriptInterpreterLua::CollectDataForWatchpointCommandCallback( in CollectDataForWatchpointCommandCallback()
336 Status ScriptInterpreterLua::SetBreakpointCommandCallbackFunction( in SetBreakpointCommandCallbackFunction()
345 Status ScriptInterpreterLua::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
350 Status ScriptInterpreterLua::RegisterBreakpointCallback( in RegisterBreakpointCallback()
360 bp_options.SetCallback(ScriptInterpreterLua::BreakpointCallbackFunction, in RegisterBreakpointCallback()
365 void ScriptInterpreterLua::SetWatchpointCommandCallback( in SetWatchpointCommandCallback()
370 Status ScriptInterpreterLua::RegisterWatchpointCallback( in RegisterWatchpointCallback()
380 wp_options->SetCallback(ScriptInterpreterLua::WatchpointCallbackFunction, in RegisterWatchpointCallback()
386 ScriptInterpreterLua::CreateInstance(Debugger &debugger) { in CreateInstance()
387 return std::make_shared<ScriptInterpreterLua>(debugger); in CreateInstance()
390 lldb_private::ConstString ScriptInterpreterLua::GetPluginNameStatic() { in GetPluginNameStatic()
395 const char *ScriptInterpreterLua::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
399 lldb_private::ConstString ScriptInterpreterLua::GetPluginName() { in GetPluginName()
403 uint32_t ScriptInterpreterLua::GetPluginVersion() { return 1; } in GetPluginVersion()
405 Lua &ScriptInterpreterLua::GetLua() { return *m_lua; } in GetLua()