Home | History | Annotate | Download | only in Target

Lines Matching refs:Watchpoint

23 #include "lldb/Breakpoint/Watchpoint.h"
92 SetEventName (eBroadcastBitWatchpointChanged, "watchpoint-changed");
551 // See also Watchpoint::SetWatchpointType(uint32_t type) and
571 error.SetErrorString("cannot set a watchpoint with watch_size of 0");
579 error.SetErrorStringWithFormat ("invalid watchpoint type: %d", kind);
582 // Currently we only support one watchpoint per address, with total number
586 const bool notify = false; // Don't notify about all the state changes we do on creating the watchpoint.
596 // Return the existing watchpoint if both size and type match.
604 // Nil the matched watchpoint; we will be creating a new one.
612 wp_sp.reset(new Watchpoint(*this, addr, size, type));
619 log->Printf("Target::%s (creation of watchpoint %s with id = %u)\n",
626 // Enabling the watchpoint on the device side failed.
627 // Remove the said watchpoint from the list maintained by the target instance.