Home
last modified time | relevance | path

Searched refs:ScriptInterpreter (Results 1 – 25 of 53) sorted by relevance

123

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp30 ScriptInterpreter::ScriptInterpreter(Debugger &debugger, in ScriptInterpreter() function in ScriptInterpreter
34 void ScriptInterpreter::CollectDataForBreakpointCommandCallback( in CollectDataForBreakpointCommandCallback()
41 void ScriptInterpreter::CollectDataForWatchpointCommandCallback( in CollectDataForWatchpointCommandCallback()
47 StructuredData::DictionarySP ScriptInterpreter::GetInterpreterInfo() { in GetInterpreterInfo()
51 bool ScriptInterpreter::LoadScriptingModule(const char *filename, in LoadScriptingModule()
61 std::string ScriptInterpreter::LanguageToString(lldb::ScriptLanguage language) { in LanguageToString()
76 ScriptInterpreter::GetDataExtractorFromSBData(const lldb::SBData &data) const { in GetDataExtractorFromSBData()
80 lldb::BreakpointSP ScriptInterpreter::GetOpaqueTypeFromSBBreakpoint( in GetOpaqueTypeFromSBBreakpoint()
85 lldb::ProcessAttachInfoSP ScriptInterpreter::GetOpaqueTypeFromSBAttachInfo( in GetOpaqueTypeFromSBAttachInfo()
90 lldb::ProcessLaunchInfoSP ScriptInterpreter::GetOpaqueTypeFromSBLaunchInfo( in GetOpaqueTypeFromSBLaunchInfo()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverScripted.cpp18 #include "lldb/Interpreter/ScriptInterpreter.h"
48 ScriptInterpreter *script_interp = target_sp->GetDebugger() in CreateImplementationIfNeeded()
99 ScriptInterpreter *BreakpointResolverScripted::GetScriptInterpreter() { in SerializeToStructuredData()
109 ScriptInterpreter *interp = GetScriptInterpreter(); in SearchCallback()
123 ScriptInterpreter *interp = GetScriptInterpreter(); in GetDepth()
135 ScriptInterpreter *interp = GetScriptInterpreter(); in GetDescription()
H A DBreakpointOptions.cpp55 ScriptInterpreter::LanguageToString(interpreter)); in SerializeToStructuredData()
77 interp_language = ScriptInterpreter::StringToLanguage(interpreter_str); in CreateFromStructuredData()
301 ScriptInterpreter *interp = target.GetDebugger().GetScriptInterpreter(); in CreateFromStructuredData()
310 ScriptInterpreter::LanguageToString(cmd_data_up->interpreter) in CreateFromStructuredData()
577 ScriptInterpreter::LanguageToString(data->interpreter)); in GetDescription()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStreamString.h23 class ScriptInterpreter; variable
50 friend class ScriptInterpreter;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.h28 class ScriptInterpreterPython : public ScriptInterpreter,
45 : ScriptInterpreter(debugger, lldb::eScriptLanguagePython), in ScriptInterpreterPython()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h78 ScriptInterpreter *script_interpreter, TypeImpl type, in FormattersMatchCandidate()
89 ScriptInterpreter *GetScriptInterpreter() const { in GetScriptInterpreter()
116 ScriptInterpreter *m_script_interpreter;
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanPython.cpp36 ScriptInterpreter *interpreter = GetScriptInterpreter(); in ThreadPlanPython()
76 ScriptInterpreter *ThreadPlanPython::GetScriptInterpreter() { in GetScriptInterpreter()
183 ScriptInterpreter *script_interp = GetScriptInterpreter(); in GetDescription()
/freebsd/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.h21 class ScriptInterpreter; variable
78 lldb_private::ScriptInterpreter *m_interpreter = nullptr;
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBAttachInfo.h15 class ScriptInterpreter; variable
202 friend class lldb_private::ScriptInterpreter;
H A DSBEvent.h18 class ScriptInterpreter; variable
77 friend class lldb_private::ScriptInterpreter;
H A DSBLaunchInfo.h16 class ScriptInterpreter; variable
213 friend class lldb_private::ScriptInterpreter;
H A DSBError.h15 class ScriptInterpreter; variable
97 friend class lldb_private::ScriptInterpreter;
H A DSBStream.h17 class ScriptInterpreter; variable
110 friend class lldb_private::ScriptInterpreter;
H A DSBBreakpoint.h17 class ScriptInterpreter; variable
163 friend class lldb_private::ScriptInterpreter;
H A DSBData.h15 class ScriptInterpreter; variable
157 friend class lldb_private::ScriptInterpreter;
H A DSBMemoryRegionInfo.h124 friend class lldb_private::ScriptInterpreter;
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp1056 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in GetHelpLong()
1080 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in DoExecute()
1126 if (ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter()) in CommandObjectScriptingObjectRaw()
1147 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in GetRepeatCommand()
1157 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in GetHelp()
1173 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in GetHelpLong()
1188 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in DoExecute()
1243 ScriptInterpreter *scripter = in SetOptionValue()
1272 ScriptInterpreter *scripter = in OptionParsingStarting()
1696 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in CommandObjectScriptingObjectParsed()
[all …]
H A DCommandObjectScripting.cpp101 ScriptInterpreter *script_interpreter = in DoExecute()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h78 lldb_private::ScriptInterpreter *m_interpreter;
83 ScriptedStackFrameRecognizer(lldb_private::ScriptInterpreter *interpreter,
H A DThreadPlanPython.h64 ScriptInterpreter *GetScriptInterpreter();
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/
H A DScriptInterpreterNone.h16 class ScriptInterpreterNone : public ScriptInterpreter {
H A DScriptInterpreterNone.cpp25 : ScriptInterpreter(debugger, eScriptLanguageNone) {} in LLDB_PLUGIN_DEFINE()
/freebsd/contrib/llvm-project/lldb/bindings/lua/
H A Dlua.swig20 #include "../source/Plugins/ScriptInterpreter/Lua/SWIGLuaBridge.h"
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverScripted.h62 ScriptInterpreter *GetScriptInterpreter();
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h136 class ScriptInterpreter : public PluginInterface {
156 ScriptInterpreter(Debugger &debugger, lldb::ScriptLanguage script_lang);
160 ~ScriptInterpreter() override = default;

123