Lines Matching refs:Watchpoint
27 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint
60 Watchpoint::~Watchpoint() = default;
63 void Watchpoint::SetCallback(WatchpointHitCallback callback, void *baton, in SetCallback()
75 void Watchpoint::SetCallback(WatchpointHitCallback callback, in SetCallback()
82 void Watchpoint::ClearCallback() { in ClearCallback()
87 void Watchpoint::SetDeclInfo(const std::string &str) { m_decl_str = str; } in SetDeclInfo()
89 std::string Watchpoint::GetWatchSpec() { return m_watch_spec_str; } in GetWatchSpec()
91 void Watchpoint::SetWatchSpec(const std::string &str) { in SetWatchSpec()
95 bool Watchpoint::IsHardware() const { in IsHardware()
100 bool Watchpoint::IsWatchVariable() const { return m_is_watch_variable; } in IsWatchVariable()
102 void Watchpoint::SetWatchVariable(bool val) { m_is_watch_variable = val; } in SetWatchVariable()
104 bool Watchpoint::CaptureWatchedValue(const ExecutionContext &exe_ctx) { in CaptureWatchedValue()
123 void Watchpoint::IncrementFalseAlarmsAndReviseHitCount() { in IncrementFalseAlarmsAndReviseHitCount()
139 bool Watchpoint::ShouldStop(StoppointCallbackContext *context) { in ShouldStop()
145 void Watchpoint::GetDescription(Stream *s, lldb::DescriptionLevel level) { in GetDescription()
149 void Watchpoint::Dump(Stream *s) const { in Dump()
155 void Watchpoint::DumpSnapshots(Stream *s, const char *prefix) const { in DumpSnapshots()
184 void Watchpoint::DumpWithLevel(Stream *s, in DumpWithLevel()
218 bool Watchpoint::IsEnabled() const { return m_enabled; } in IsEnabled()
225 void Watchpoint::TurnOnEphemeralMode() { m_is_ephemeral = true; } in TurnOnEphemeralMode()
227 void Watchpoint::TurnOffEphemeralMode() { in TurnOffEphemeralMode()
233 bool Watchpoint::IsDisabledDuringEphemeralMode() { in IsDisabledDuringEphemeralMode()
237 void Watchpoint::SetEnabled(bool enabled, bool notify) { in SetEnabled()
255 void Watchpoint::SetWatchpointType(uint32_t type, bool notify) { in SetWatchpointType()
265 bool Watchpoint::WatchpointRead() const { return m_watch_read != 0; } in WatchpointRead()
267 bool Watchpoint::WatchpointWrite() const { return m_watch_write != 0; } in WatchpointWrite()
269 uint32_t Watchpoint::GetIgnoreCount() const { return m_ignore_count; } in GetIgnoreCount()
271 void Watchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount()
278 bool Watchpoint::InvokeCallback(StoppointCallbackContext *context) { in InvokeCallback()
282 void Watchpoint::SetCondition(const char *condition) { in SetCondition()
301 const char *Watchpoint::GetConditionText() const { in GetConditionText()
308 void Watchpoint::SendWatchpointChangedEvent( in SendWatchpointChangedEvent()
314 new Watchpoint::WatchpointEventData(eventKind, shared_from_this()); in SendWatchpointChangedEvent()
319 void Watchpoint::SendWatchpointChangedEvent(WatchpointEventData *data) { in SendWatchpointChangedEvent()
330 Watchpoint::WatchpointEventData::WatchpointEventData( in WatchpointEventData()
334 Watchpoint::WatchpointEventData::~WatchpointEventData() = default;
336 ConstString Watchpoint::WatchpointEventData::GetFlavorString() { in GetFlavorString()
341 ConstString Watchpoint::WatchpointEventData::GetFlavor() const { in GetFlavor()
345 WatchpointSP &Watchpoint::WatchpointEventData::GetWatchpoint() { in GetWatchpoint()
350 Watchpoint::WatchpointEventData::GetWatchpointEventType() const { in GetWatchpointEventType()
354 void Watchpoint::WatchpointEventData::Dump(Stream *s) const {} in Dump()
356 const Watchpoint::WatchpointEventData *
357 Watchpoint::WatchpointEventData::GetEventDataFromEvent(const Event *event) { in GetEventDataFromEvent()
368 Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent()
378 WatchpointSP Watchpoint::WatchpointEventData::GetWatchpointFromEvent( in GetWatchpointFromEvent()