Lines Matching refs:Watchpoint
26 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint
61 Watchpoint::~Watchpoint() = default;
64 void Watchpoint::SetCallback(WatchpointHitCallback callback, void *baton, in SetCallback()
76 void Watchpoint::SetCallback(WatchpointHitCallback callback, in SetCallback()
83 void Watchpoint::ClearCallback() { in ClearCallback()
88 void Watchpoint::SetDeclInfo(const std::string &str) { m_decl_str = str; } in SetDeclInfo()
90 std::string Watchpoint::GetWatchSpec() { return m_watch_spec_str; } in GetWatchSpec()
92 void Watchpoint::SetWatchSpec(const std::string &str) { in SetWatchSpec()
96 bool Watchpoint::IsHardware() const { in IsHardware()
101 bool Watchpoint::IsWatchVariable() const { return m_is_watch_variable; } in IsWatchVariable()
103 void Watchpoint::SetWatchVariable(bool val) { m_is_watch_variable = val; } in SetWatchVariable()
105 bool Watchpoint::CaptureWatchedValue(const ExecutionContext &exe_ctx) { in CaptureWatchedValue()
124 void Watchpoint::IncrementFalseAlarmsAndReviseHitCount() { in IncrementFalseAlarmsAndReviseHitCount()
140 bool Watchpoint::ShouldStop(StoppointCallbackContext *context) { in ShouldStop()
146 void Watchpoint::GetDescription(Stream *s, lldb::DescriptionLevel level) { in GetDescription()
150 void Watchpoint::Dump(Stream *s) const { in Dump()
156 void Watchpoint::DumpSnapshots(Stream *s, const char *prefix) const { in DumpSnapshots()
185 void Watchpoint::DumpWithLevel(Stream *s, in DumpWithLevel()
219 bool Watchpoint::IsEnabled() const { return m_enabled; } in IsEnabled()
226 void Watchpoint::TurnOnEphemeralMode() { m_is_ephemeral = true; } in TurnOnEphemeralMode()
228 void Watchpoint::TurnOffEphemeralMode() { in TurnOffEphemeralMode()
234 bool Watchpoint::IsDisabledDuringEphemeralMode() { in IsDisabledDuringEphemeralMode()
238 void Watchpoint::SetEnabled(bool enabled, bool notify) { in SetEnabled()
256 void Watchpoint::SetWatchpointType(uint32_t type, bool notify) { in SetWatchpointType()
266 bool Watchpoint::WatchpointRead() const { return m_watch_read != 0; } in WatchpointRead()
268 bool Watchpoint::WatchpointWrite() const { return m_watch_write != 0; } in WatchpointWrite()
270 uint32_t Watchpoint::GetIgnoreCount() const { return m_ignore_count; } in GetIgnoreCount()
272 void Watchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount()
279 bool Watchpoint::InvokeCallback(StoppointCallbackContext *context) { in InvokeCallback()
283 void Watchpoint::SetCondition(const char *condition) { in SetCondition()
302 const char *Watchpoint::GetConditionText() const { in GetConditionText()
309 void Watchpoint::SendWatchpointChangedEvent( in SendWatchpointChangedEvent()
315 new Watchpoint::WatchpointEventData(eventKind, shared_from_this()); in SendWatchpointChangedEvent()
320 void Watchpoint::SendWatchpointChangedEvent(WatchpointEventData *data) { in SendWatchpointChangedEvent()
331 Watchpoint::WatchpointEventData::WatchpointEventData( in WatchpointEventData()
336 Watchpoint::WatchpointEventData::~WatchpointEventData() = default;
338 ConstString Watchpoint::WatchpointEventData::GetFlavorString() { in GetFlavorString()
343 ConstString Watchpoint::WatchpointEventData::GetFlavor() const { in GetFlavor()
347 WatchpointSP &Watchpoint::WatchpointEventData::GetWatchpoint() { in GetWatchpoint()
352 Watchpoint::WatchpointEventData::GetWatchpointEventType() const { in GetWatchpointEventType()
356 void Watchpoint::WatchpointEventData::Dump(Stream *s) const {} in Dump()
358 const Watchpoint::WatchpointEventData *
359 Watchpoint::WatchpointEventData::GetEventDataFromEvent(const Event *event) { in GetEventDataFromEvent()
370 Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent()
380 WatchpointSP Watchpoint::WatchpointEventData::GetWatchpointFromEvent( in GetWatchpointFromEvent()