Represents an instance of watchpoint for a specific target
program.
A watchpoint is determined by the address and the byte size that
resulted in this particular instantiation. Each watchpoint has its
settable options.
See also SBTarget.watchpoint_iter() for example usage of iterating
through the watchpoints of the target.
|
|
|
__init__(self,
*args)
__init__(lldb::SBWatchpoint self) -> SBWatchpoint
__init__(lldb::SBWatchpoint self, SBWatchpoint rhs) ->
SBWatchpoint |
source code
|
|
|
IsValid(self)
IsValid(SBWatchpoint self) -> bool |
source code
|
|
|
|
|
|
|
__eq__(self,
*args)
__eq__(SBWatchpoint self, SBWatchpoint rhs) -> bool |
source code
|
|
|
__ne__(self,
*args)
__ne__(SBWatchpoint self, SBWatchpoint rhs) -> bool |
source code
|
|
|
GetError(self)
GetError(SBWatchpoint self) -> SBError |
source code
|
|
|
GetID(self)
GetID(SBWatchpoint self) -> lldb::watch_id_t |
source code
|
|
|
|
|
GetWatchAddress(self)
GetWatchAddress(SBWatchpoint self) -> lldb::addr_t |
source code
|
|
|
GetWatchSize(self)
GetWatchSize(SBWatchpoint self) -> size_t |
source code
|
|
|
SetEnabled(self,
*args)
SetEnabled(SBWatchpoint self, bool enabled) |
source code
|
|
|
IsEnabled(self)
IsEnabled(SBWatchpoint self) -> bool |
source code
|
|
|
GetHitCount(self)
GetHitCount(SBWatchpoint self) -> uint32_t |
source code
|
|
|
GetIgnoreCount(self)
GetIgnoreCount(SBWatchpoint self) -> uint32_t |
source code
|
|
|
SetIgnoreCount(self,
*args)
SetIgnoreCount(SBWatchpoint self, uint32_t n) |
source code
|
|
|
|
|
|
|
GetDescription(self,
*args)
GetDescription(SBWatchpoint self, SBStream description,
lldb::DescriptionLevel level) -> bool |
source code
|
|
|
EventIsWatchpointEvent(*args)
EventIsWatchpointEvent(SBEvent event) -> bool |
source code
|
|
|
GetWatchpointEventTypeFromEvent(*args)
GetWatchpointEventTypeFromEvent(SBEvent event) ->
lldb::WatchpointEventType |
source code
|
|
|
GetWatchpointFromEvent(*args)
GetWatchpointFromEvent(SBEvent event) -> SBWatchpoint |
source code
|
|
|
__str__(self)
__str__(SBWatchpoint self) -> PyObject * |
source code
|
|