Lines Matching refs:ScriptInterpreterLua

28 LLDB_PLUGIN_DEFINE(ScriptInterpreterLua)
40 ScriptInterpreterLua &script_interpreter, in IOHandlerLuaInterpreter()
140 ScriptInterpreterLua &m_script_interpreter;
146 ScriptInterpreterLua::ScriptInterpreterLua(Debugger &debugger) in ScriptInterpreterLua() function in ScriptInterpreterLua
150 ScriptInterpreterLua::~ScriptInterpreterLua() = default;
152 StructuredData::DictionarySP ScriptInterpreterLua::GetInterpreterInfo() { in GetInterpreterInfo()
158 bool ScriptInterpreterLua::ExecuteOneLine(llvm::StringRef command, in ExecuteOneLine()
201 void ScriptInterpreterLua::ExecuteInterpreterLoop() { in ExecuteInterpreterLoop()
216 bool ScriptInterpreterLua::LoadScriptingModule( in LoadScriptingModule()
229 void ScriptInterpreterLua::Initialize() { in Initialize()
239 void ScriptInterpreterLua::Terminate() {} in Terminate()
241 llvm::Error ScriptInterpreterLua::EnterSession(user_id_t debugger_id) { in EnterSession()
254 llvm::Error ScriptInterpreterLua::LeaveSession() { in LeaveSession()
268 bool ScriptInterpreterLua::BreakpointCallbackFunction( in BreakpointCallbackFunction()
283 ScriptInterpreterLua *lua_interpreter = static_cast<ScriptInterpreterLua *>( in BreakpointCallbackFunction()
298 bool ScriptInterpreterLua::WatchpointCallbackFunction( in WatchpointCallbackFunction()
311 ScriptInterpreterLua *lua_interpreter = static_cast<ScriptInterpreterLua *>( in WatchpointCallbackFunction()
325 void ScriptInterpreterLua::CollectDataForBreakpointCommandCallback( in CollectDataForBreakpointCommandCallback()
334 void ScriptInterpreterLua::CollectDataForWatchpointCommandCallback( in CollectDataForWatchpointCommandCallback()
342 Status ScriptInterpreterLua::SetBreakpointCommandCallbackFunction( in SetBreakpointCommandCallbackFunction()
351 Status ScriptInterpreterLua::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
357 Status ScriptInterpreterLua::RegisterBreakpointCallback( in RegisterBreakpointCallback()
367 bp_options.SetCallback(ScriptInterpreterLua::BreakpointCallbackFunction, in RegisterBreakpointCallback()
372 void ScriptInterpreterLua::SetWatchpointCommandCallback( in SetWatchpointCommandCallback()
378 Status ScriptInterpreterLua::RegisterWatchpointCallback( in RegisterWatchpointCallback()
388 wp_options->SetCallback(ScriptInterpreterLua::WatchpointCallbackFunction, in RegisterWatchpointCallback()
394 ScriptInterpreterLua::CreateInstance(Debugger &debugger) { in CreateInstance()
395 return std::make_shared<ScriptInterpreterLua>(debugger); in CreateInstance()
398 llvm::StringRef ScriptInterpreterLua::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
402 Lua &ScriptInterpreterLua::GetLua() { return *m_lua; } in GetLua()