Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp40 ScriptInterpreterLua &script_interpreter, in IOHandlerLuaInterpreter() argument
45 m_script_interpreter(script_interpreter), in IOHandlerLuaInterpreter()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp242 ScriptInterpreter *script_interpreter = in LocateExecutableScriptingResources() local
244 if (script_interpreter && in LocateExecutableScriptingResources()
245 script_interpreter->IsReservedWord(module_basename.c_str())) { in LocateExecutableScriptingResources()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DModule.cpp1504 ScriptInterpreter *script_interpreter = debugger.GetScriptInterpreter(); in LoadScriptingResourceInTarget() local
1505 if (script_interpreter) { in LoadScriptingResourceInTarget()
1527 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()
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3185 ScriptInterpreter *script_interpreter = in IOHandlerInterrupt() local
3187 if (script_interpreter) { in IOHandlerInterrupt()
3188 if (script_interpreter->Interrupt()) in IOHandlerInterrupt()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp79 ScriptInterpreter *script_interpreter = in GetPythonInterpreter() local
81 return static_cast<ScriptInterpreterPythonImpl *>(script_interpreter); in GetPythonInterpreter()