Home
last modified time | relevance | path

Searched refs:m_break_loc_collection (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()
31 m_break_loc_collection.push_back(bp_loc); in Add()
38 if (pos != m_break_loc_collection.end()) { in Remove()
39 m_break_loc_collection.erase(pos); in Remove()
65 m_break_loc_collection.begin(), in GetIDPairIterator()
66 m_break_loc_collection.end(), // Search full range in GetIDPairIterator()
74 m_break_loc_collection.begin(), in GetIDPairConstIterator()
75 m_break_loc_collection.end(), // Search full range in GetIDPairConstIterator()
84 if (pos != m_break_loc_collection.end()) in FindByIDPair()
95 if (pos != m_break_loc_collection.end()) in FindByIDPair()
[all …]
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointLocationCollection.h104 size_t GetSize() const { return m_break_loc_collection.size(); } in GetSize()
164 collection m_break_loc_collection; variable
172 return BreakpointLocationCollectionIterable(m_break_loc_collection); in BreakpointLocations()