Home
last modified time | relevance | path

Searched refs:m_watchpoint_index_map (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Process/FreeBSDRemote/
DNativeThreadFreeBSD.cpp232 m_watchpoint_index_map.insert({addr, wp_index}); in SetWatchpoint()
237 auto wp = m_watchpoint_index_map.find(addr); in RemoveWatchpoint()
238 if (wp == m_watchpoint_index_map.end()) in RemoveWatchpoint()
241 m_watchpoint_index_map.erase(wp); in RemoveWatchpoint()
282 m_watchpoint_index_map = source.m_watchpoint_index_map; in CopyWatchpointsFrom()
DNativeThreadFreeBSD.h75 WatchpointIndexMap m_watchpoint_index_map; variable
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DNativeThreadWindows.cpp146 m_watchpoint_index_map.insert({addr, wp_index}); in SetWatchpoint()
151 auto wp = m_watchpoint_index_map.find(addr); in RemoveWatchpoint()
152 if (wp == m_watchpoint_index_map.end()) in RemoveWatchpoint()
155 m_watchpoint_index_map.erase(wp); in RemoveWatchpoint()
DNativeThreadWindows.h64 IndexMap m_watchpoint_index_map; variable
/external/llvm-project/lldb/source/Plugins/Process/NetBSD/
DNativeThreadNetBSD.cpp249 m_watchpoint_index_map.insert({addr, wp_index}); in SetWatchpoint()
254 auto wp = m_watchpoint_index_map.find(addr); in RemoveWatchpoint()
255 if (wp == m_watchpoint_index_map.end()) in RemoveWatchpoint()
258 m_watchpoint_index_map.erase(wp); in RemoveWatchpoint()
299 m_watchpoint_index_map = source.m_watchpoint_index_map; in CopyWatchpointsFrom()
DNativeThreadNetBSD.h75 WatchpointIndexMap m_watchpoint_index_map; variable
/external/llvm-project/lldb/source/Plugins/Process/Linux/
DNativeThreadLinux.cpp159 m_watchpoint_index_map.insert({addr, wp_index}); in SetWatchpoint()
164 auto wp = m_watchpoint_index_map.find(addr); in RemoveWatchpoint()
165 if (wp == m_watchpoint_index_map.end()) in RemoveWatchpoint()
168 m_watchpoint_index_map.erase(wp); in RemoveWatchpoint()
216 if (m_watchpoint_index_map.empty()) { in Resume()
DNativeThreadLinux.h103 WatchpointIndexMap m_watchpoint_index_map; variable