Home
last modified time | relevance | path

Searched refs:m_notifier (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/opencsd/decoder/include/common/
H A Dcomp_attach_pt_t.h147 IComponentAttachNotifier *m_notifier; /**< Optional attachement notifier interface. */ variable
156 m_notifier = 0; in componentAttachPt()
172 if(m_notifier) m_notifier->attachNotify(1); in attach()
194 if(m_notifier) m_notifier->attachNotify(0); in detach()
217 if(m_notifier) m_notifier->attachNotify(0); in detach_all()
222 m_notifier = notifier; in set_notifier()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp200 : m_modules(), m_modules_mutex(), m_notifier(notifier) {} in ModuleList()
242 if (use_notifier && m_notifier) in AppendImpl()
243 m_notifier->NotifyModuleAdded(*this, module_sp); in AppendImpl()
315 if (use_notifier && m_notifier) in RemoveImpl()
316 m_notifier->NotifyModuleRemoved(*this, module_sp); in RemoveImpl()
329 if (use_notifier && m_notifier) in RemoveImpl()
330 m_notifier->NotifyModuleRemoved(*this, module_sp); in RemoveImpl()
343 if (m_notifier) in ReplaceModule()
344 m_notifier->NotifyModuleUpdated(*this, old_module_sp, new_module_sp); in ReplaceModule()
406 if (m_notifier) in Remove()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleList.h521 Notifier *m_notifier = nullptr; variable