Home
last modified time | relevance | path

Searched refs:plugin_sp (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DEvent.cpp185 const lldb::StructuredDataPluginSP &plugin_sp) in EventDataStructuredData() argument
187 m_plugin_sp(plugin_sp) {} in EventDataStructuredData()
228 const lldb::StructuredDataPluginSP &plugin_sp) { in SetStructuredDataPlugin() argument
229 m_plugin_sp = plugin_sp; in SetStructuredDataPlugin()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DStructuredDataImpl.h67 lldb::StructuredDataPluginSP plugin_sp = m_plugin_wp.lock(); in GetDescription() local
70 if (!plugin_sp) { in GetDescription()
77 return plugin_sp->GetDescription(m_data_sp, stream); in GetDescription()
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp807 auto plugin_sp = in DoExecute() local
809 if (!plugin_sp || (plugin_sp->GetPluginName() != in DoExecute()
815 *static_cast<StructuredDataDarwinLog *>(plugin_sp.get()); in DoExecute()
878 auto plugin_sp = in DoExecute() local
881 plugin_sp ? "available" : "unavailable"); in DoExecute()
883 plugin_sp ? plugin_sp->GetEnabled( in DoExecute()
1495 auto plugin_sp = process_sp->GetStructuredDataPlugin(GetDarwinLogTypeName()); in InitCompletionHookCallback() local
1496 if (!plugin_sp) { in InitCompletionHookCallback()
1506 std::weak_ptr<StructuredDataPlugin> plugin_wp(plugin_sp); in InitCompletionHookCallback()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEvent.h134 const lldb::StructuredDataPluginSP &plugin_sp);
153 void SetStructuredDataPlugin(const lldb::StructuredDataPluginSP &plugin_sp);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1989 StructuredDataPluginSP plugin_sp = in HandleProcessEvent() local
1991 if (plugin_sp) { in HandleProcessEvent()
1996 plugin_sp->GetDescription(structured_data_sp, content_stream); in HandleProcessEvent()
2009 plugin_sp->GetPluginName(), error); in HandleProcessEvent()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4536 const StructuredDataPluginSP &plugin_sp) { in BroadcastStructuredData() argument
4538 shared_from_this(), object_sp, plugin_sp); in BroadcastStructuredData()
6304 StructuredDataPluginSP plugin_sp = (*create_instance)(*this); in MapSupportedStructuredDataPlugins() local
6305 if (!plugin_sp) { in MapSupportedStructuredDataPlugins()
6314 if (plugin_sp->SupportsStructuredDataType(type_name)) { in MapSupportedStructuredDataPlugins()
6316 std::make_pair(type_name, plugin_sp)); in MapSupportedStructuredDataPlugins()
6319 plugin_sp->GetPluginName(), type_name); in MapSupportedStructuredDataPlugins()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h2697 const lldb::StructuredDataPluginSP &plugin_sp);