Home
last modified time | relevance | path

Searched refs:m_delegates (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/lldb/source/Host/common/
DNativeProcessProtocol.cpp301 if (llvm::is_contained(m_delegates, &native_delegate)) in RegisterNativeDelegate()
304 m_delegates.push_back(&native_delegate); in RegisterNativeDelegate()
313 const auto initial_size = m_delegates.size(); in UnregisterNativeDelegate()
314 m_delegates.erase( in UnregisterNativeDelegate()
315 remove(m_delegates.begin(), m_delegates.end(), &native_delegate), in UnregisterNativeDelegate()
316 m_delegates.end()); in UnregisterNativeDelegate()
320 return m_delegates.size() < initial_size; in UnregisterNativeDelegate()
328 for (auto native_delegate : m_delegates) in SynchronouslyNotifyProcessStateChanged()
332 if (!m_delegates.empty()) { in SynchronouslyNotifyProcessStateChanged()
353 for (auto native_delegate : m_delegates) in NotifyDidExec()
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangASTImporter.h267 DelegateMap m_delegates; variable
347 DelegateMap &delegates = context_md->m_delegates; in GetDelegate()
DClangASTImporter.cpp810 md->m_delegates.erase(src_ast); in ForgetSource()
/external/llvm-project/lldb/include/lldb/Host/common/
DNativeProcessProtocol.h420 std::vector<NativeDelegate *> m_delegates; variable