Lines Matching refs:Watchpoint
26 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint
53 Watchpoint::~Watchpoint() = default;
56 void Watchpoint::SetCallback(WatchpointHitCallback callback, void *baton, in SetCallback()
68 void Watchpoint::SetCallback(WatchpointHitCallback callback, in SetCallback()
75 void Watchpoint::ClearCallback() { in ClearCallback()
80 void Watchpoint::SetDeclInfo(const std::string &str) { m_decl_str = str; } in SetDeclInfo()
82 std::string Watchpoint::GetWatchSpec() { return m_watch_spec_str; } in GetWatchSpec()
84 void Watchpoint::SetWatchSpec(const std::string &str) { in SetWatchSpec()
90 bool Watchpoint::IsHardware() const { return m_is_hardware; } in IsHardware()
92 bool Watchpoint::IsWatchVariable() const { return m_is_watch_variable; } in IsWatchVariable()
94 void Watchpoint::SetWatchVariable(bool val) { m_is_watch_variable = val; } in SetWatchVariable()
96 bool Watchpoint::CaptureWatchedValue(const ExecutionContext &exe_ctx) { in CaptureWatchedValue()
115 void Watchpoint::IncrementFalseAlarmsAndReviseHitCount() { in IncrementFalseAlarmsAndReviseHitCount()
131 bool Watchpoint::ShouldStop(StoppointCallbackContext *context) { in ShouldStop()
137 void Watchpoint::GetDescription(Stream *s, lldb::DescriptionLevel level) { in GetDescription()
141 void Watchpoint::Dump(Stream *s) const { in Dump()
147 void Watchpoint::DumpSnapshots(Stream *s, const char *prefix) const { in DumpSnapshots()
176 void Watchpoint::DumpWithLevel(Stream *s, in DumpWithLevel()
210 bool Watchpoint::IsEnabled() const { return m_enabled; } in IsEnabled()
217 void Watchpoint::TurnOnEphemeralMode() { m_is_ephemeral = true; } in TurnOnEphemeralMode()
219 void Watchpoint::TurnOffEphemeralMode() { in TurnOffEphemeralMode()
225 bool Watchpoint::IsDisabledDuringEphemeralMode() { in IsDisabledDuringEphemeralMode()
229 void Watchpoint::SetEnabled(bool enabled, bool notify) { in SetEnabled()
247 void Watchpoint::SetWatchpointType(uint32_t type, bool notify) { in SetWatchpointType()
257 bool Watchpoint::WatchpointRead() const { return m_watch_read != 0; } in WatchpointRead()
259 bool Watchpoint::WatchpointWrite() const { return m_watch_write != 0; } in WatchpointWrite()
261 uint32_t Watchpoint::GetIgnoreCount() const { return m_ignore_count; } in GetIgnoreCount()
263 void Watchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount()
270 bool Watchpoint::InvokeCallback(StoppointCallbackContext *context) { in InvokeCallback()
274 void Watchpoint::SetCondition(const char *condition) { in SetCondition()
292 const char *Watchpoint::GetConditionText() const { in GetConditionText()
299 void Watchpoint::SendWatchpointChangedEvent( in SendWatchpointChangedEvent()
305 new Watchpoint::WatchpointEventData(eventKind, shared_from_this()); in SendWatchpointChangedEvent()
310 void Watchpoint::SendWatchpointChangedEvent(WatchpointEventData *data) { in SendWatchpointChangedEvent()
321 Watchpoint::WatchpointEventData::WatchpointEventData( in WatchpointEventData()
326 Watchpoint::WatchpointEventData::~WatchpointEventData() = default;
328 const ConstString &Watchpoint::WatchpointEventData::GetFlavorString() { in GetFlavorString()
333 const ConstString &Watchpoint::WatchpointEventData::GetFlavor() const { in GetFlavor()
337 WatchpointSP &Watchpoint::WatchpointEventData::GetWatchpoint() { in GetWatchpoint()
342 Watchpoint::WatchpointEventData::GetWatchpointEventType() const { in GetWatchpointEventType()
346 void Watchpoint::WatchpointEventData::Dump(Stream *s) const {} in Dump()
348 const Watchpoint::WatchpointEventData *
349 Watchpoint::WatchpointEventData::GetEventDataFromEvent(const Event *event) { in GetEventDataFromEvent()
360 Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent()
370 WatchpointSP Watchpoint::WatchpointEventData::GetWatchpointFromEvent( in GetWatchpointFromEvent()