Home
last modified time | relevance | path

Searched refs:m_collection_mutex (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Breakpoint/
DBreakpointLocationCollection.cpp21 : m_break_loc_collection(), m_collection_mutex() {} in BreakpointLocationCollection()
27 std::lock_guard<std::mutex> guard(m_collection_mutex); in Add()
36 std::lock_guard<std::mutex> guard(m_collection_mutex); in Remove()
102 std::lock_guard<std::mutex> guard(m_collection_mutex); in GetByIndex()
112 std::lock_guard<std::mutex> guard(m_collection_mutex); in GetByIndex()
138 std::lock_guard<std::mutex> guard(m_collection_mutex); in ValidForThisThread()
150 std::lock_guard<std::mutex> guard(m_collection_mutex); in IsInternal()
167 std::lock_guard<std::mutex> guard(m_collection_mutex); in GetDescription()
181 std::lock(m_collection_mutex, rhs.m_collection_mutex); in operator =()
182 std::lock_guard<std::mutex> lhs_guard(m_collection_mutex, std::adopt_lock); in operator =()
[all …]
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointLocationCollection.h165 mutable std::mutex m_collection_mutex; variable