Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DStructuredDataImpl.h75 lldb::StructuredDataPluginSP plugin_sp = m_plugin_wp.lock(); in GetDescription() local
78 if (!plugin_sp) { in GetDescription()
87 return plugin_sp->GetDescription(m_data_sp, stream); in GetDescription()
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DEvent.cpp207 const lldb::StructuredDataPluginSP &plugin_sp) in EventDataStructuredData() argument
209 m_plugin_sp(plugin_sp) {} in EventDataStructuredData()
250 const lldb::StructuredDataPluginSP &plugin_sp) { in SetStructuredDataPlugin() argument
251 m_plugin_sp = plugin_sp; in SetStructuredDataPlugin()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp804 auto plugin_sp = in DoExecute() local
806 if (!plugin_sp || (plugin_sp->GetPluginName() != in DoExecute()
812 *static_cast<StructuredDataDarwinLog *>(plugin_sp.get()); in DoExecute()
875 auto plugin_sp = in DoExecute() local
878 plugin_sp ? "available" : "unavailable"); in DoExecute()
880 plugin_sp ? plugin_sp->GetEnabled( in DoExecute()
1487 auto plugin_sp = process_sp->GetStructuredDataPlugin(GetDarwinLogTypeName()); in InitCompletionHookCallback() local
1488 if (!plugin_sp) { in InitCompletionHookCallback()
1498 std::weak_ptr<StructuredDataPlugin> plugin_wp(plugin_sp); in InitCompletionHookCallback()
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1779 StructuredDataPluginSP plugin_sp = in HandleProcessEvent() local
1781 if (plugin_sp) { in HandleProcessEvent()
1787 plugin_sp->GetDescription(structured_data_sp, content_stream); in HandleProcessEvent()
1800 plugin_sp->GetPluginName(), error); in HandleProcessEvent()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4306 const StructuredDataPluginSP &plugin_sp) { in BroadcastStructuredData() argument
4308 shared_from_this(), object_sp, plugin_sp); in BroadcastStructuredData()
6082 StructuredDataPluginSP plugin_sp = (*create_instance)(*this); in MapSupportedStructuredDataPlugins() local
6083 if (!plugin_sp) { in MapSupportedStructuredDataPlugins()
6092 if (plugin_sp->SupportsStructuredDataType(type_name)) { in MapSupportedStructuredDataPlugins()
6094 std::make_pair(type_name, plugin_sp)); in MapSupportedStructuredDataPlugins()
6097 plugin_sp->GetPluginName(), type_name); in MapSupportedStructuredDataPlugins()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h2620 const lldb::StructuredDataPluginSP &plugin_sp);