Lines Matching refs:Watchpoint
29 Watchpoint::Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, in Watchpoint() function in Watchpoint
66 Watchpoint::~Watchpoint() = default;
69 void Watchpoint::SetCallback(WatchpointHitCallback callback, void *baton, in SetCallback()
81 void Watchpoint::SetCallback(WatchpointHitCallback callback, in SetCallback()
88 bool Watchpoint::SetupVariableWatchpointDisabler(StackFrameSP frame_sp) const { in SetupVariableWatchpointDisabler()
129 bool Watchpoint::VariableWatchpointDisabler(void *baton, in VariableWatchpointDisabler()
176 void Watchpoint::ClearCallback() { in ClearCallback()
181 void Watchpoint::SetDeclInfo(const std::string &str) { m_decl_str = str; } in SetDeclInfo()
183 std::string Watchpoint::GetWatchSpec() { return m_watch_spec_str; } in GetWatchSpec()
185 void Watchpoint::SetWatchSpec(const std::string &str) { in SetWatchSpec()
189 bool Watchpoint::IsHardware() const { in IsHardware()
194 bool Watchpoint::IsWatchVariable() const { return m_is_watch_variable; } in IsWatchVariable()
196 void Watchpoint::SetWatchVariable(bool val) { m_is_watch_variable = val; } in SetWatchVariable()
198 bool Watchpoint::CaptureWatchedValue(const ExecutionContext &exe_ctx) { in CaptureWatchedValue()
217 bool Watchpoint::WatchedValueReportable(const ExecutionContext &exe_ctx) { in WatchedValueReportable()
255 bool Watchpoint::ShouldStop(StoppointCallbackContext *context) { in ShouldStop()
261 void Watchpoint::GetDescription(Stream *s, lldb::DescriptionLevel level) { in GetDescription()
265 void Watchpoint::Dump(Stream *s) const { in Dump()
271 bool Watchpoint::DumpSnapshots(Stream *s, const char *prefix) const { in DumpSnapshots()
336 void Watchpoint::DumpWithLevel(Stream *s, in DumpWithLevel()
370 bool Watchpoint::IsEnabled() const { return m_enabled; } in IsEnabled()
377 void Watchpoint::TurnOnEphemeralMode() { m_is_ephemeral = true; } in TurnOnEphemeralMode()
379 void Watchpoint::TurnOffEphemeralMode() { in TurnOffEphemeralMode()
385 bool Watchpoint::IsDisabledDuringEphemeralMode() { in IsDisabledDuringEphemeralMode()
389 void Watchpoint::SetEnabled(bool enabled, bool notify) { in SetEnabled()
405 void Watchpoint::SetWatchpointType(uint32_t type, bool notify) { in SetWatchpointType()
418 bool Watchpoint::WatchpointRead() const { return m_watch_read != 0; } in WatchpointRead()
420 bool Watchpoint::WatchpointWrite() const { return m_watch_write != 0; } in WatchpointWrite()
422 bool Watchpoint::WatchpointModify() const { return m_watch_modify != 0; } in WatchpointModify()
424 uint32_t Watchpoint::GetIgnoreCount() const { return m_ignore_count; } in GetIgnoreCount()
426 void Watchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount()
433 bool Watchpoint::InvokeCallback(StoppointCallbackContext *context) { in InvokeCallback()
437 void Watchpoint::SetCondition(const char *condition) { in SetCondition()
456 const char *Watchpoint::GetConditionText() const { in GetConditionText()
463 void Watchpoint::SendWatchpointChangedEvent( in SendWatchpointChangedEvent()
473 Watchpoint::WatchpointEventData::WatchpointEventData( in WatchpointEventData()
477 Watchpoint::WatchpointEventData::~WatchpointEventData() = default;
479 llvm::StringRef Watchpoint::WatchpointEventData::GetFlavorString() { in GetFlavorString()
483 llvm::StringRef Watchpoint::WatchpointEventData::GetFlavor() const { in GetFlavor()
487 WatchpointSP &Watchpoint::WatchpointEventData::GetWatchpoint() { in GetWatchpoint()
492 Watchpoint::WatchpointEventData::GetWatchpointEventType() const { in GetWatchpointEventType()
496 void Watchpoint::WatchpointEventData::Dump(Stream *s) const {} in Dump()
498 const Watchpoint::WatchpointEventData *
499 Watchpoint::WatchpointEventData::GetEventDataFromEvent(const Event *event) { in GetEventDataFromEvent()
510 Watchpoint::WatchpointEventData::GetWatchpointEventTypeFromEvent( in GetWatchpointEventTypeFromEvent()
520 WatchpointSP Watchpoint::WatchpointEventData::GetWatchpointFromEvent( in GetWatchpointFromEvent()