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 StructuredData::DictionarySP ScriptInterpreterLua::GetInterpreterInfo() { in GetInterpreterInfo()
157 bool ScriptInterpreterLua::ExecuteOneLine(llvm::StringRef command, in ExecuteOneLine()
200 void ScriptInterpreterLua::ExecuteInterpreterLoop() { in ExecuteInterpreterLoop()
215 bool ScriptInterpreterLua::LoadScriptingModule( in LoadScriptingModule()
228 void ScriptInterpreterLua::Initialize() { in Initialize()
238 void ScriptInterpreterLua::Terminate() {} in Terminate()
240 llvm::Error ScriptInterpreterLua::EnterSession(user_id_t debugger_id) { in EnterSession()
253 llvm::Error ScriptInterpreterLua::LeaveSession() { in LeaveSession()
267 bool ScriptInterpreterLua::BreakpointCallbackFunction( in BreakpointCallbackFunction()
282 ScriptInterpreterLua *lua_interpreter = static_cast<ScriptInterpreterLua *>( in BreakpointCallbackFunction()
297 bool ScriptInterpreterLua::WatchpointCallbackFunction( in WatchpointCallbackFunction()
310 ScriptInterpreterLua *lua_interpreter = static_cast<ScriptInterpreterLua *>( in WatchpointCallbackFunction()
324 void ScriptInterpreterLua::CollectDataForBreakpointCommandCallback( in CollectDataForBreakpointCommandCallback()
333 void ScriptInterpreterLua::CollectDataForWatchpointCommandCallback( in CollectDataForWatchpointCommandCallback()
341 Status ScriptInterpreterLua::SetBreakpointCommandCallbackFunction( in SetBreakpointCommandCallbackFunction()
350 Status ScriptInterpreterLua::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
355 Status ScriptInterpreterLua::RegisterBreakpointCallback( in RegisterBreakpointCallback()
365 bp_options.SetCallback(ScriptInterpreterLua::BreakpointCallbackFunction, in RegisterBreakpointCallback()
370 void ScriptInterpreterLua::SetWatchpointCommandCallback( in SetWatchpointCommandCallback()
375 Status ScriptInterpreterLua::RegisterWatchpointCallback( in RegisterWatchpointCallback()
385 wp_options->SetCallback(ScriptInterpreterLua::WatchpointCallbackFunction, in RegisterWatchpointCallback()
391 ScriptInterpreterLua::CreateInstance(Debugger &debugger) { in CreateInstance()
392 return std::make_shared<ScriptInterpreterLua>(debugger); in CreateInstance()
395 llvm::StringRef ScriptInterpreterLua::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
399 Lua &ScriptInterpreterLua::GetLua() { return *m_lua; } in GetLua()