Home
last modified time | relevance | path

Searched refs:watch_flags (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DNativeRegisterContextDBReg_x86.cpp41 static inline uint64_t GetWatchTypeBits(uint32_t watch_flags, in GetWatchTypeBits() argument
50 return static_cast<uint64_t>(watch_flags) << (16 + 4 * wp_index); in GetWatchTypeBits()
144 lldb::addr_t addr, size_t size, uint32_t watch_flags, uint32_t wp_index) { in SetHardwareWatchpointWithIndex() argument
153 if (watch_flags == 2) in SetHardwareWatchpointWithIndex()
154 watch_flags = 3; in SetHardwareWatchpointWithIndex()
156 if (watch_flags != 1 && watch_flags != 3) in SetHardwareWatchpointWithIndex()
178 GetWatchTypeBits(watch_flags, wp_index) | in SetHardwareWatchpointWithIndex()
188 (GetWatchTypeBits(watch_flags, wp_index) | in SetHardwareWatchpointWithIndex()
244 lldb::addr_t addr, size_t size, uint32_t watch_flags) { in SetHardwareWatchpoint() argument
251 error = SetHardwareWatchpointWithIndex(addr, size, watch_flags, wp_index); in SetHardwareWatchpoint()
H A DNativeRegisterContextDBReg_arm64.cpp222 lldb::addr_t addr, size_t size, uint32_t watch_flags) { in SetHardwareWatchpoint() argument
225 watch_flags); in SetHardwareWatchpoint()
241 switch (watch_flags) { in SetHardwareWatchpoint()
243 watch_flags = 2; in SetHardwareWatchpoint()
246 watch_flags = 1; in SetHardwareWatchpoint()
278 control_value |= watch_flags << 3; in SetHardwareWatchpoint()
H A DNativeRegisterContextDBReg_x86.h39 uint32_t watch_flags,
43 uint32_t watch_flags) override;
H A DNativeRegisterContextDBReg_arm64.h37 uint32_t watch_flags) override;
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DNativeWatchpointList.cpp16 Status NativeWatchpointList::Add(addr_t addr, size_t size, uint32_t watch_flags, in Add() argument
18 m_watchpoints[addr] = {addr, size, watch_flags, hardware}; in Add()
H A DNativeProcessProtocol.cpp149 uint32_t watch_flags, in SetWatchpoint() argument
178 thread->SetWatchpoint(addr, size, watch_flags, hardware); in SetWatchpoint()
182 thread_error = thread->SetWatchpoint(addr, size, watch_flags, false); in SetWatchpoint()
205 return m_watchpoint_list.Add(addr, size, watch_flags, hardware); in SetWatchpoint()
H A DNativeRegisterContext.cpp266 uint32_t watch_flags) { in SetHardwareWatchpoint() argument
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeWatchpointList.h27 Status Add(lldb::addr_t addr, size_t size, uint32_t watch_flags,
H A DNativeThreadProtocol.h45 uint32_t watch_flags, bool hardware) = 0;
H A DNativeRegisterContext.h76 uint32_t watch_flags);
H A DNativeProcessProtocol.h179 uint32_t watch_flags, bool hardware);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeThreadNetBSD.cpp264 uint32_t watch_flags, bool hardware) { in SetWatchpoint() argument
272 GetRegisterContext().SetHardwareWatchpoint(addr, size, watch_flags); in SetWatchpoint()
H A DNativeThreadNetBSD.h41 Status SetWatchpoint(lldb::addr_t addr, size_t size, uint32_t watch_flags,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeThreadFreeBSD.cpp252 uint32_t watch_flags, bool hardware) { in SetWatchpoint() argument
260 GetRegisterContext().SetHardwareWatchpoint(addr, size, watch_flags); in SetWatchpoint()
H A DNativeThreadFreeBSD.h41 Status SetWatchpoint(lldb::addr_t addr, size_t size, uint32_t watch_flags,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp2844 uint32_t watch_flags = 0; in Handle_Z() local
2858 watch_flags = 1; in Handle_Z()
2863 watch_flags = 2; in Handle_Z()
2868 watch_flags = 3; in Handle_Z()
2910 addr, size, watch_flags, want_hardware); in Handle_Z()