Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/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()
H A DFormatManager.cpp182 ScriptInterpreter *script_interpreter = in GetPossibleMatches() local
188 entries.push_back({bitfieldname, script_interpreter, in GetPossibleMatches()
193 entries.push_back({type_name, script_interpreter, TypeImpl(compiler_type), in GetPossibleMatches()
198 entries.push_back({display_type_name, script_interpreter, in GetPossibleMatches()
/freebsd-14.2/contrib/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()
/freebsd-14.2/contrib/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()
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp1455 ScriptInterpreter *script_interpreter = debugger.GetScriptInterpreter(); in LoadScriptingResourceInTarget() local
1456 if (script_interpreter) { in LoadScriptingResourceInTarget()
1477 bool did_load = script_interpreter->LoadScriptingModule( in LoadScriptingResourceInTarget()
H A DFormatEntity.cpp388 ScriptInterpreter *script_interpreter = in RunScriptFormatKeyword() local
390 if (script_interpreter) { in RunScriptFormatKeyword()
394 if (script_interpreter->RunScriptFormatKeyword(script_function_name, t, in RunScriptFormatKeyword()
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3193 ScriptInterpreter *script_interpreter = in IOHandlerInterrupt() local
3195 if (script_interpreter) { in IOHandlerInterrupt()
3196 if (script_interpreter->Interrupt()) in IOHandlerInterrupt()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp81 ScriptInterpreter *script_interpreter = in GetPythonInterpreter() local
83 return static_cast<ScriptInterpreterPythonImpl *>(script_interpreter); in GetPythonInterpreter()