Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DStructuredDataImpl.h72 lldb::StructuredDataPluginSP plugin_sp = m_plugin_wp.lock(); in GetDescription() local
75 if (!plugin_sp) { in GetDescription()
84 return plugin_sp->GetDescription(m_data_sp, stream); in GetDescription()
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DEvent.cpp197 const lldb::StructuredDataPluginSP &plugin_sp) in EventDataStructuredData() argument
199 m_plugin_sp(plugin_sp) {} in EventDataStructuredData()
240 const lldb::StructuredDataPluginSP &plugin_sp) { in SetStructuredDataPlugin() argument
241 m_plugin_sp = plugin_sp; in SetStructuredDataPlugin()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp806 auto plugin_sp = in DoExecute() local
808 if (!plugin_sp || (plugin_sp->GetPluginName() != in DoExecute()
814 *static_cast<StructuredDataDarwinLog *>(plugin_sp.get()); in DoExecute()
878 auto plugin_sp = in DoExecute() local
881 plugin_sp ? "available" : "unavailable"); in DoExecute()
884 plugin_sp ? plugin_sp->GetEnabled(plugin_name) : false; in DoExecute()
1514 auto plugin_sp = process_sp->GetStructuredDataPlugin(GetDarwinLogTypeName()); in InitCompletionHookCallback() local
1515 if (!plugin_sp) { in InitCompletionHookCallback()
1528 std::weak_ptr<StructuredDataPlugin> plugin_wp(plugin_sp); in InitCompletionHookCallback()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEvent.h135 const lldb::StructuredDataPluginSP &plugin_sp);
154 void SetStructuredDataPlugin(const lldb::StructuredDataPluginSP &plugin_sp);
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1407 StructuredDataPluginSP plugin_sp = in HandleProcessEvent() local
1409 if (plugin_sp) { in HandleProcessEvent()
1415 plugin_sp->GetDescription(structured_data_sp, content_stream); in HandleProcessEvent()
1428 plugin_sp->GetPluginName().AsCString(), in HandleProcessEvent()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4223 const StructuredDataPluginSP &plugin_sp) { in BroadcastStructuredData() argument
4226 new EventDataStructuredData(shared_from_this(), object_sp, plugin_sp)); in BroadcastStructuredData()
5952 StructuredDataPluginSP plugin_sp = (*create_instance)(*this); in MapSupportedStructuredDataPlugins() local
5953 if (!plugin_sp) { in MapSupportedStructuredDataPlugins()
5962 if (plugin_sp->SupportsStructuredDataType(type_name)) { in MapSupportedStructuredDataPlugins()
5964 std::make_pair(type_name, plugin_sp)); in MapSupportedStructuredDataPlugins()
5969 __FUNCTION__, plugin_sp->GetPluginName().GetCString(), in MapSupportedStructuredDataPlugins()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h2508 const lldb::StructuredDataPluginSP &plugin_sp);