| /llvm-project/lldb/source/Interpreter/ |
| H A D | ScriptInterpreter.cpp | 1 //===-- ScriptInterpreter.cpp ---------------------------------------------===// 9 #include "lldb/Interpreter/ScriptInterpreter.h" 30 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() 72 llvm_unreachable("Unhandled ScriptInterpreter!"); in LanguageToString() [all...] |
| /llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverScripted.cpp | 18 #include "lldb/Interpreter/ScriptInterpreter.h" 48 ScriptInterpreter *script_interp = target_sp->GetDebugger() in CreateImplementationIfNeeded() 100 ScriptInterpreter *BreakpointResolverScripted::GetScriptInterpreter() { in GetScriptInterpreter() 110 ScriptInterpreter *interp = GetScriptInterpreter(); in SearchCallback() 124 ScriptInterpreter *interp = GetScriptInterpreter(); in GetDepth() 136 ScriptInterpreter *interp = GetScriptInterpreter(); in GetDescription()
|
| H A D | BreakpointOptions.cpp | 55 ScriptInterpreter::LanguageToString(interpreter)); in SerializeToStructuredData() 77 interp_language = ScriptInterpreter::StringToLanguage(interpreter_str); in CreateFromStructuredData() 306 ScriptInterpreter *interp = target.GetDebugger().GetScriptInterpreter(); in CreateFromStructuredData() 315 ScriptInterpreter::LanguageToString(cmd_data_up->interpreter) in CreateFromStructuredData() 582 ScriptInterpreter::LanguageToString(data->interpreter)); in GetDescription()
|
| /llvm-project/lldb/include/lldb/Utility/ |
| H A D | StreamString.h | 23 class ScriptInterpreter; variable 50 friend class ScriptInterpreter;
|
| /llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.h | 28 class ScriptInterpreterPython : public ScriptInterpreter, 45 : ScriptInterpreter(debugger, lldb::eScriptLanguagePython), in ScriptInterpreterPython()
|
| /llvm-project/lldb/include/lldb/DataFormatters/ |
| H A D | FormatClasses.h | 78 ScriptInterpreter *script_interpreter, TypeImpl type, in FormattersMatchCandidate() 89 ScriptInterpreter *GetScriptInterpreter() const { in GetScriptInterpreter() 116 ScriptInterpreter *m_script_interpreter;
|
| /llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanPython.cpp | |
| /llvm-project/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.h | 21 class ScriptInterpreter; variable 80 lldb_private::ScriptInterpreter *m_interpreter = nullptr;
|
| /llvm-project/lldb/include/lldb/API/ |
| H A D | SBEvent.h | 18 class ScriptInterpreter; variable 77 friend class lldb_private::ScriptInterpreter;
|
| H A D | SBAttachInfo.h | 15 class ScriptInterpreter; variable 202 friend class lldb_private::ScriptInterpreter;
|
| H A D | SBError.h | 15 class ScriptInterpreter; variable 102 friend class lldb_private::ScriptInterpreter;
|
| H A D | SBLaunchInfo.h | 16 class ScriptInterpreter; variable 213 friend class lldb_private::ScriptInterpreter;
|
| H A D | SBStream.h | 17 class ScriptInterpreter; variable 110 friend class lldb_private::ScriptInterpreter;
|
| H A D | SBBreakpoint.h | 17 class ScriptInterpreter; variable 163 friend class lldb_private::ScriptInterpreter;
|
| H A D | SBData.h | 15 class ScriptInterpreter; variable 157 friend class lldb_private::ScriptInterpreter;
|
| H A D | SBMemoryRegionInfo.h | 124 friend class lldb_private::ScriptInterpreter;
|
| /llvm-project/lldb/source/Plugins/ |
| H A D | CMakeLists.txt | 19 add_subdirectory(ScriptInterpreter) 43 if(${pStripped} MATCHES "^ScriptInterpreter*")
|
| /llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectCommands.cpp | 23 #include "lldb/Interpreter/ScriptInterpreter.h" 1063 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in GetHelpLong() 1087 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in DoExecute() 1133 if (ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter()) in HandleArgumentCompletion() 1154 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in GetHelp() 1164 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in GetHelp() 1180 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in GetHelpLong() 1195 ScriptInterpreter *scripter = GetDebugger().GetScriptInterpreter(); in DoExecute() 1250 ScriptInterpreter *scripter = in SetOptionValue() 1282 ScriptInterpreter *scripte in GetDefinitions() [all...] |
| /llvm-project/lldb/include/lldb/Target/ |
| H A D | StackFrameRecognizer.h | 80 lldb_private::ScriptInterpreter *m_interpreter; 86 ScriptedStackFrameRecognizer(lldb_private::ScriptInterpreter *interpreter,
|
| H A D | ThreadPlanPython.h | |
| /llvm-project/lldb/source/Plugins/ScriptInterpreter/None/ |
| H A D | ScriptInterpreterNone.h | 16 class ScriptInterpreterNone : public ScriptInterpreter {
|
| H A D | ScriptInterpreterNone.cpp | 25 : ScriptInterpreter(debugger, eScriptLanguageNone) {} in LLDB_PLUGIN_DEFINE()
|
| /llvm-project/lldb/bindings/lua/ |
| H A D | lua.swig | 20 #include "../source/Plugins/ScriptInterpreter/Lua/SWIGLuaBridge.h"
|
| /llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointResolverScripted.h | 62 ScriptInterpreter *GetScriptInterpreter();
|
| /llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 1 //===-- ScriptInterpreter.h -------------------------------------*- C++ -*-===// 137 class ScriptInterpreter : public PluginInterface { 157 ScriptInterpreter(Debugger &debugger, lldb::ScriptLanguage script_lang); 161 ~ScriptInterpreter() override = default;
|