Home
last modified time | relevance | path

Searched refs:watch_id_t (Results 1 – 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
HDWatchpointList.h47 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;
HDWatchpoint.h201 void SetID(lldb::watch_id_t id) { m_loc_id = id; } in SetID()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
HDWatchpointList.cpp21 lldb::watch_id_t WatchpointList::Add(const WatchpointSP &wp_sp, bool notify) { in Add()
88 WatchpointIDMatches(lldb::watch_id_t watch_id) : m_watch_id(watch_id) {} in WatchpointIDMatches()
95 const lldb::watch_id_t m_watch_id;
99 WatchpointList::GetIDIterator(lldb::watch_id_t watch_id) { in GetIDIterator()
106 WatchpointList::GetIDConstIterator(lldb::watch_id_t watch_id) const { in GetIDConstIterator()
112 WatchpointSP WatchpointList::FindByID(lldb::watch_id_t watch_id) const { in FindByID()
122 lldb::watch_id_t WatchpointList::FindIDByAddress(lldb::addr_t addr) { in FindIDByAddress()
130 lldb::watch_id_t WatchpointList::FindIDBySpec(std::string spec) { in FindIDBySpec()
160 std::vector<lldb::watch_id_t> WatchpointList::GetWatchpointIDs() const { in GetWatchpointIDs()
161 std::vector<lldb::watch_id_t> IDs; in GetWatchpointIDs()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBWatchpoint.cpp51 watch_id_t SBWatchpoint::GetID() { in GetID()
52 LLDB_RECORD_METHOD_NO_ARGS(lldb::watch_id_t, SBWatchpoint, GetID); in GetID()
55 watch_id_t watch_id = LLDB_INVALID_WATCH_ID; in GetID()
317 LLDB_REGISTER_METHOD(lldb::watch_id_t, SBWatchpoint, GetID, ()); in RegisterMethods()
HDSBTarget.cpp1366 bool SBTarget::DeleteWatchpoint(watch_id_t wp_id) { in DeleteWatchpoint()
1367 LLDB_RECORD_METHOD(bool, SBTarget, DeleteWatchpoint, (lldb::watch_id_t), in DeleteWatchpoint()
1383 SBWatchpoint SBTarget::FindWatchpointByID(lldb::watch_id_t wp_id) { in FindWatchpointByID()
1385 (lldb::watch_id_t), wp_id); in FindWatchpointByID()
2551 LLDB_REGISTER_METHOD(bool, SBTarget, DeleteWatchpoint, (lldb::watch_id_t)); in RegisterMethods()
2553 (lldb::watch_id_t)); in RegisterMethods()
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
HDSBWatchpoint.i42 watch_id_t
HDSBTarget.i851 DeleteWatchpoint (lldb::watch_id_t watch_id);
854 FindWatchpointByID (lldb::watch_id_t watch_id);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
HDlldb-types.h89 typedef int32_t watch_id_t; typedef
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBWatchpoint.h38 watch_id_t GetID();
HDSBTarget.h744 bool DeleteWatchpoint(lldb::watch_id_t watch_id);
746 lldb::SBWatchpoint FindWatchpointByID(lldb::watch_id_t watch_id);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDTarget.h737 bool DisableWatchpointByID(lldb::watch_id_t watch_id);
739 bool EnableWatchpointByID(lldb::watch_id_t watch_id);
741 bool RemoveWatchpointByID(lldb::watch_id_t watch_id);
743 bool IgnoreWatchpointByID(lldb::watch_id_t watch_id, uint32_t ignore_count);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
HDTarget.cpp1270 bool Target::DisableWatchpointByID(lldb::watch_id_t watch_id) { in DisableWatchpointByID()
1289 bool Target::EnableWatchpointByID(lldb::watch_id_t watch_id) { in EnableWatchpointByID()
1308 bool Target::RemoveWatchpointByID(lldb::watch_id_t watch_id) { in RemoveWatchpointByID()
1324 bool Target::IgnoreWatchpointByID(lldb::watch_id_t watch_id, in IgnoreWatchpointByID()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
HDProcessGDBRemote.cpp1863 watch_id_t watch_id = LLDB_INVALID_WATCH_ID; in SetThreadStopInfo()