Home
last modified time | relevance | path

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

/llvm-project/lldb/source/Commands/
H A DCommandObjectScripting.cpp103 ScriptInterpreter *script_interpreter = in DoExecute()
106 if (script_interpreter == nullptr) { in DoExecute()
116 script_interpreter->ExecuteInterpreterLoop(); in DoExecute()
122 if (script_interpreter->ExecuteOneLine(command, &result)) in DoExecute()
101 ScriptInterpreter *script_interpreter = DoExecute() local
/llvm-project/lldb/unittests/ScriptInterpreter/Lua/
H A DScriptInterpreterTests.cpp47 ScriptInterpreterLua script_interpreter(*debugger_sp); in TEST_F() local
49 EXPECT_TRUE(script_interpreter.ExecuteOneLine("foo = 1", &result)); in TEST_F()
50 EXPECT_FALSE(script_interpreter.ExecuteOneLine("nil = foo", &result)); in TEST_F()
/llvm-project/lldb/source/DataFormatters/
H A DTypeSummary.cpp198 ScriptInterpreter *script_interpreter = in GetDescription()
201 if (!script_interpreter) { in GetDescription()
206 return script_interpreter->GetScriptedSummary(
171 ScriptInterpreter *script_interpreter = FormatObject() local
H A DFormatManager.cpp186 ScriptInterpreter *script_interpreter = in GetPossibleMatches() local
192 entries.push_back({bitfieldname, script_interpreter, in GetPossibleMatches()
197 entries.push_back({type_name, script_interpreter, TypeImpl(compiler_type), in GetPossibleMatches()
202 entries.push_back({display_type_name, script_interpreter, in GetPossibleMatches()
/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h78 ScriptInterpreter *script_interpreter, TypeImpl type, in FormattersMatchCandidate() argument
80 : m_type_name(name), m_script_interpreter(script_interpreter), in FormattersMatchCandidate()
/llvm-project/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/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp246 ScriptInterpreter *script_interpreter = in LocateExecutableScriptingResources()
248 if (script_interpreter && in LocateExecutableScriptingResources()
249 script_interpreter->IsReservedWord(module_basename.c_str())) { in LocateExecutableScriptingResources()
240 ScriptInterpreter *script_interpreter = LocateExecutableScriptingResources() local
/llvm-project/lldb/source/Core/
H A DModule.cpp1466 ScriptInterpreter *script_interpreter = debugger.GetScriptInterpreter(); in LoadScriptingResourceInTarget()
1467 if (script_interpreter) { in LoadScriptingResourceInTarget()
1488 bool did_load = script_interpreter->LoadScriptingModule(
1452 ScriptInterpreter *script_interpreter = debugger.GetScriptInterpreter(); LoadScriptingResourceInTarget() local
H A DFormatEntity.cpp392 ScriptInterpreter *script_interpreter = in RunScriptFormatKeyword()
394 if (script_interpreter) { in RunScriptFormatKeyword()
398 if (script_interpreter->RunScriptFormatKeyword(script_function_name, t, in RunScriptFormatKeyword()
389 ScriptInterpreter *script_interpreter = RunScriptFormatKeyword() local
/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3266 ScriptInterpreter *script_interpreter = in SaveTranscript()
3268 if (script_interpreter) { in SaveTranscript()
3269 if (script_interpreter->Interrupt()) in SaveTranscript()
3212 ScriptInterpreter *script_interpreter = IOHandlerInterrupt() local
/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp77 ScriptInterpreter *script_interpreter =
79 return static_cast<ScriptInterpreterPythonImpl *>(script_interpreter);
83 ScriptInterpreter *script_interpreter = GetPythonInterpreter() local