reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
58516   lldb::watch_id_t arg2 ;
58551   lldb::watch_id_t arg2 ;
78509   lldb::watch_id_t result;
tools/lldb/include/lldb/API/SBTarget.h
  744   bool DeleteWatchpoint(lldb::watch_id_t watch_id);
  746   lldb::SBWatchpoint FindWatchpointByID(lldb::watch_id_t watch_id);
tools/lldb/include/lldb/API/SBWatchpoint.h
   38   watch_id_t GetID();
tools/lldb/include/lldb/Breakpoint/Watchpoint.h
  206   void SetID(lldb::watch_id_t id) { m_loc_id = id; }
tools/lldb/include/lldb/Breakpoint/WatchpointList.h
   47   lldb::watch_id_t Add(const lldb::WatchpointSP &wp_sp, bool notify);
   86   lldb::WatchpointSP FindByID(lldb::watch_id_t watchID) const;
   95   lldb::watch_id_t FindIDByAddress(lldb::addr_t addr);
  105   lldb::watch_id_t FindIDBySpec(std::string spec);
  135   bool Remove(lldb::watch_id_t watchID, bool notify);
  154   bool ShouldStop(StoppointCallbackContext *context, lldb::watch_id_t watchID);
  189   typedef std::vector<lldb::watch_id_t> id_vector;
  193   wp_collection::iterator GetIDIterator(lldb::watch_id_t watchID);
  196   GetIDConstIterator(lldb::watch_id_t watchID) const;
  201   lldb::watch_id_t m_next_wp_id;
tools/lldb/include/lldb/Target/Target.h
  750   bool DisableWatchpointByID(lldb::watch_id_t watch_id);
  752   bool EnableWatchpointByID(lldb::watch_id_t watch_id);
  754   bool RemoveWatchpointByID(lldb::watch_id_t watch_id);
  756   bool IgnoreWatchpointByID(lldb::watch_id_t watch_id, uint32_t ignore_count);
tools/lldb/source/API/SBTarget.cpp
 1364 bool SBTarget::DeleteWatchpoint(watch_id_t wp_id) {
 1381 SBWatchpoint SBTarget::FindWatchpointByID(lldb::watch_id_t wp_id) {
tools/lldb/source/API/SBWatchpoint.cpp
   51 watch_id_t SBWatchpoint::GetID() {
   55   watch_id_t watch_id = LLDB_INVALID_WATCH_ID;
tools/lldb/source/Breakpoint/WatchpointList.cpp
   21 lldb::watch_id_t WatchpointList::Add(const WatchpointSP &wp_sp, bool notify) {
   88   WatchpointIDMatches(lldb::watch_id_t watch_id) : m_watch_id(watch_id) {}
   95   const lldb::watch_id_t m_watch_id;
   99 WatchpointList::GetIDIterator(lldb::watch_id_t watch_id) {
  106 WatchpointList::GetIDConstIterator(lldb::watch_id_t watch_id) const {
  112 WatchpointSP WatchpointList::FindByID(lldb::watch_id_t watch_id) const {
  122 lldb::watch_id_t WatchpointList::FindIDByAddress(lldb::addr_t addr) {
  130 lldb::watch_id_t WatchpointList::FindIDBySpec(std::string spec) {
  160 std::vector<lldb::watch_id_t> WatchpointList::GetWatchpointIDs() const {
  161   std::vector<lldb::watch_id_t> IDs;
  168 bool WatchpointList::Remove(lldb::watch_id_t watch_id, bool notify) {
  197                                 lldb::watch_id_t watch_id) {
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 1886               watch_id_t watch_id = LLDB_INVALID_WATCH_ID;
tools/lldb/source/Target/Target.cpp
 1264 bool Target::DisableWatchpointByID(lldb::watch_id_t watch_id) {
 1283 bool Target::EnableWatchpointByID(lldb::watch_id_t watch_id) {
 1302 bool Target::RemoveWatchpointByID(lldb::watch_id_t watch_id) {
 1318 bool Target::IgnoreWatchpointByID(lldb::watch_id_t watch_id,