Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/
H A DScriptInterpreterNone.cpp22 LLDB_PLUGIN_DEFINE(ScriptInterpreterNone) in LLDB_PLUGIN_DEFINE() argument
24 ScriptInterpreterNone::ScriptInterpreterNone(Debugger &debugger) in LLDB_PLUGIN_DEFINE()
27 ScriptInterpreterNone::~ScriptInterpreterNone() = default;
33 bool ScriptInterpreterNone::ExecuteOneLine(llvm::StringRef command, in ExecuteOneLine()
40 void ScriptInterpreterNone::ExecuteInterpreterLoop() { in ExecuteInterpreterLoop()
44 void ScriptInterpreterNone::Initialize() { in Initialize()
54 void ScriptInterpreterNone::Terminate() {} in Terminate()
57 ScriptInterpreterNone::CreateInstance(Debugger &debugger) { in CreateInstance()
58 return std::make_shared<ScriptInterpreterNone>(debugger); in CreateInstance()
61 llvm::StringRef ScriptInterpreterNone::GetPluginDescriptionStatic() { in GetPluginDescriptionStatic()
H A DScriptInterpreterNone.h16 class ScriptInterpreterNone : public ScriptInterpreter {
18 ScriptInterpreterNone(Debugger &debugger);
20 ~ScriptInterpreterNone() override;
/freebsd-src/lib/clang/include/Plugins/
H A DPlugins.def70 LLDB_SCRIPT_PLUGIN(ScriptInterpreterNone)
/freebsd-src/lib/clang/liblldb/
H A DMakefile552 SRCS+= Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp