Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DStructuredDataImpl.h72 auto plugin_sp = lldb::StructuredDataPluginSP(m_plugin_wp); in GetDescription() local
73 if (!plugin_sp) { in GetDescription()
80 return plugin_sp->GetDescription(m_data_sp, stream); in GetDescription()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DEvent.cpp206 const lldb::StructuredDataPluginSP &plugin_sp) in EventDataStructuredData() argument
208 m_plugin_sp(plugin_sp) {} in EventDataStructuredData()
251 const lldb::StructuredDataPluginSP &plugin_sp) { in SetStructuredDataPlugin() argument
252 m_plugin_sp = plugin_sp; in SetStructuredDataPlugin()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp843 auto plugin_sp = in DoExecute() local
845 if (!plugin_sp || (plugin_sp->GetPluginName() != in DoExecute()
852 *static_cast<StructuredDataDarwinLog *>(plugin_sp.get()); in DoExecute()
919 auto plugin_sp = in DoExecute() local
922 plugin_sp ? "available" : "unavailable"); in DoExecute()
925 plugin_sp ? plugin_sp->GetEnabled(plugin_name) : false; in DoExecute()
1573 auto plugin_sp = process_sp->GetStructuredDataPlugin(GetDarwinLogTypeName()); in InitCompletionHookCallback() local
1574 if (!plugin_sp) { in InitCompletionHookCallback()
1587 std::weak_ptr<StructuredDataPlugin> plugin_wp(plugin_sp); in InitCompletionHookCallback()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DEvent.h150 const lldb::StructuredDataPluginSP &plugin_sp);
171 void SetStructuredDataPlugin(const lldb::StructuredDataPluginSP &plugin_sp);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDebugger.cpp1448 StructuredDataPluginSP plugin_sp = in HandleProcessEvent() local
1450 if (plugin_sp) { in HandleProcessEvent()
1456 plugin_sp->GetDescription(structured_data_sp, content_stream); in HandleProcessEvent()
1469 plugin_sp->GetPluginName().AsCString(), in HandleProcessEvent()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp4435 const StructuredDataPluginSP &plugin_sp) { in BroadcastStructuredData() argument
4438 new EventDataStructuredData(shared_from_this(), object_sp, plugin_sp)); in BroadcastStructuredData()
6123 StructuredDataPluginSP plugin_sp = (*create_instance)(*this); in MapSupportedStructuredDataPlugins() local
6124 if (!plugin_sp) { in MapSupportedStructuredDataPlugins()
6133 if (plugin_sp->SupportsStructuredDataType(type_name)) { in MapSupportedStructuredDataPlugins()
6135 std::make_pair(type_name, plugin_sp)); in MapSupportedStructuredDataPlugins()
6140 __FUNCTION__, plugin_sp->GetPluginName().GetCString(), in MapSupportedStructuredDataPlugins()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcess.h2759 const lldb::StructuredDataPluginSP &plugin_sp);