Home | History | Annotate | Download | only in Target

Lines Matching refs:Watchpoint

24 #include "lldb/Breakpoint/Watchpoint.h"
529 // Make sure watchpoint is properly disabled and subsequently enabled while performing watchpoint actions.
532 WatchpointSentry(Process *p, Watchpoint *w):
534 watchpoint(w)
536 if (process && watchpoint)
539 watchpoint->TurnOnEphemeralMode();
540 process->DisableWatchpoint(watchpoint, notify);
545 if (process && watchpoint)
547 if (!watchpoint->IsDisabledDuringEphemeralMode())
550 process->EnableWatchpoint(watchpoint, notify);
552 watchpoint->TurnOffEphemeralMode();
557 Watchpoint *watchpoint;
584 strm.Printf("watchpoint %" PRIi64, m_value);
610 // Check if we should stop at a watchpoint.
620 log->Printf ("Process::%s could not find watchpoint location id: %" PRId64 "...",
657 // This sentry object makes sure the current watchpoint is disabled while performing watchpoint actions,
664 // re-enable the watchpoint
723 // the watchpoint whether it should stop (aka ignore count and
746 error_sp->Printf ("Stopped due to an error evaluating condition of watchpoint ");
797 log_process->Printf ("Process::%s could not find watchpoint id: %" PRId64 "...", __FUNCTION__, m_value);