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.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/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp804 auto plugin_sp = in DoExecute()
806 if (!plugin_sp || (plugin_sp->GetPluginName() != in DoExecute()
812 *static_cast<StructuredDataDarwinLog *>(plugin_sp.get()); in DoExecute()
875 auto plugin_sp = in DoExecute()
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()
1488 if (!plugin_sp) { in InitCompletionHookCallback()
802 auto plugin_sp = DoExecute() local
874 auto plugin_sp = DoExecute() local
1491 auto plugin_sp = process_sp->GetStructuredDataPlugin(GetDarwinLogTypeName()); InitCompletionHookCallback() local
[all...]
/freebsd/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/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1819 StructuredDataPluginSP plugin_sp = in HandleProcessEvent() local
1821 if (plugin_sp) { in HandleProcessEvent()
1827 plugin_sp->GetDescription(structured_data_sp, content_stream); in HandleProcessEvent()
1840 plugin_sp->GetPluginName(), error); in HandleProcessEvent()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4504 const StructuredDataPluginSP &plugin_sp) { in BroadcastStructuredData() argument
4506 shared_from_this(), object_sp, plugin_sp); in BroadcastStructuredData()
6283 StructuredDataPluginSP plugin_sp = (*create_instance)(*this); in MapSupportedStructuredDataPlugins() local
6284 if (!plugin_sp) { in MapSupportedStructuredDataPlugins()
6293 if (plugin_sp->SupportsStructuredDataType(type_name)) { in MapSupportedStructuredDataPlugins()
6295 std::make_pair(type_name, plugin_sp)); in MapSupportedStructuredDataPlugins()
6298 plugin_sp->GetPluginName(), type_name); in MapSupportedStructuredDataPlugins()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h2645 const lldb::StructuredDataPluginSP &plugin_sp);