Home
last modified time | relevance | path

Searched refs:ScriptInterpreterNone (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/
H A DScriptInterpreterNone.cpp23 LLDB_PLUGIN_DEFINE(ScriptInterpreterNone) in LLDB_PLUGIN_DEFINE() argument
25 ScriptInterpreterNone::ScriptInterpreterNone(Debugger &debugger) in LLDB_PLUGIN_DEFINE()
28 ScriptInterpreterNone::~ScriptInterpreterNone() = default;
30 bool ScriptInterpreterNone::ExecuteOneLine(llvm::StringRef command, in ExecuteOneLine()
38 void ScriptInterpreterNone::ExecuteInterpreterLoop() { in ExecuteInterpreterLoop()
43 void ScriptInterpreterNone::Initialize() { in Initialize()
53 void ScriptInterpreterNone::Terminate() {} in Terminate()
56 ScriptInterpreterNone::CreateInstance(Debugger &debugger) { in CreateInstance()
57 return std::make_shared<ScriptInterpreterNone>(debugger); in CreateInstance()
65 const char *ScriptInterpreterNone::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
[all …]
H A DScriptInterpreterNone.h16 class ScriptInterpreterNone : public ScriptInterpreter {
18 ScriptInterpreterNone(Debugger &debugger);
20 ~ScriptInterpreterNone() override;
/freebsd-13.1/lib/clang/include/Plugins/
H A DPlugins.def66 LLDB_SCRIPT_PLUGIN(ScriptInterpreterNone)
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile503 SRCS+= Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp