Home
last modified time | relevance | path

Searched refs:script_interpreter (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectScript.cpp90 ScriptInterpreter *script_interpreter = in DoExecute() local
93 if (script_interpreter == nullptr) { in DoExecute()
103 script_interpreter->ExecuteInterpreterLoop(); in DoExecute()
109 if (script_interpreter->ExecuteOneLine(command, &result)) in DoExecute()
/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Lua/
H A DScriptInterpreterTests.cpp50 ScriptInterpreterLua script_interpreter(*debugger_sp); in TEST_F() local
52 EXPECT_TRUE(script_interpreter.ExecuteOneLine("foo = 1", &result)); in TEST_F()
53 EXPECT_FALSE(script_interpreter.ExecuteOneLine("nil = foo", &result)); in TEST_F()
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DTypeSummary.cpp168 ScriptInterpreter *script_interpreter = in FormatObject() local
171 if (!script_interpreter) { in FormatObject()
176 return script_interpreter->GetScriptedSummary( in FormatObject()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp40 ScriptInterpreterLua &script_interpreter, in IOHandlerLuaInterpreter() argument
45 m_script_interpreter(script_interpreter), in IOHandlerLuaInterpreter()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp241 ScriptInterpreter *script_interpreter = in LocateExecutableScriptingResources() local
243 if (script_interpreter && in LocateExecutableScriptingResources()
244 script_interpreter->IsReservedWord(module_basename.c_str())) { in LocateExecutableScriptingResources()
/llvm-project-15.0.7/lldb/source/Core/
H A DModule.cpp1522 ScriptInterpreter *script_interpreter = debugger.GetScriptInterpreter(); in LoadScriptingResourceInTarget() local
1523 if (script_interpreter) { in LoadScriptingResourceInTarget()
1545 bool did_load = script_interpreter->LoadScriptingModule( in LoadScriptingResourceInTarget()
H A DFormatEntity.cpp395 ScriptInterpreter *script_interpreter = in RunScriptFormatKeyword() local
397 if (script_interpreter) { in RunScriptFormatKeyword()
401 if (script_interpreter->RunScriptFormatKeyword(script_function_name, t, in RunScriptFormatKeyword()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3137 ScriptInterpreter *script_interpreter = in IOHandlerInterrupt() local
3139 if (script_interpreter) { in IOHandlerInterrupt()
3140 if (script_interpreter->Interrupt()) in IOHandlerInterrupt()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp77 ScriptInterpreter *script_interpreter = in GetPythonInterpreter() local
79 return static_cast<ScriptInterpreterPythonImpl *>(script_interpreter); in GetPythonInterpreter()