Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectScripting.cpp103 ScriptInterpreter *script_interpreter = in DoExecute() local
106 if (script_interpreter == nullptr) { in DoExecute()
116 script_interpreter->ExecuteInterpreterLoop(); in DoExecute()
122 if (script_interpreter->ExecuteOneLine(command, &result)) in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeSummary.cpp206 ScriptInterpreter *script_interpreter = in FormatObject() local
209 if (!script_interpreter) { in FormatObject()
214 return script_interpreter->GetScriptedSummary( in FormatObject()
H A DFormatManager.cpp187 ScriptInterpreter *script_interpreter = in GetPossibleMatches() local
193 entries.push_back({bitfieldname, script_interpreter, in GetPossibleMatches()
199 entries.push_back({type_name, script_interpreter, TypeImpl(compiler_type), in GetPossibleMatches()
204 entries.push_back({display_type_name, script_interpreter, in GetPossibleMatches()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h78 ScriptInterpreter *script_interpreter, TypeImpl type,
80 : m_type_name(name), m_script_interpreter(script_interpreter), in m_type_name()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp41 ScriptInterpreterLua &script_interpreter, in IOHandlerLuaInterpreter() argument
46 m_script_interpreter(script_interpreter), in IOHandlerLuaInterpreter()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp1441 ScriptInterpreter *script_interpreter = debugger.GetScriptInterpreter(); in LoadScriptingResourceInTarget() local
1442 if (script_interpreter) { in LoadScriptingResourceInTarget()
1463 bool did_load = script_interpreter->LoadScriptingModule( in LoadScriptingResourceInTarget()
H A DFormatEntity.cpp448 ScriptInterpreter *script_interpreter = in RunScriptFormatKeyword() local
450 if (script_interpreter) { in RunScriptFormatKeyword()
454 if (script_interpreter->RunScriptFormatKeyword(script_function_name, t, in RunScriptFormatKeyword()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3387 ScriptInterpreter *script_interpreter = in IOHandlerInterrupt() local
3389 if (script_interpreter) { in IOHandlerInterrupt()
3390 if (script_interpreter->Interrupt()) in IOHandlerInterrupt()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp79 ScriptInterpreter *script_interpreter = in GetPythonInterpreter() local
81 return static_cast<ScriptInterpreterPythonImpl *>(script_interpreter); in GetPythonInterpreter()