Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Breakpoint/
DWatchpointList.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;
DWatchpoint.h200 void SetID(lldb::watch_id_t id) { m_id = id; } in SetID()
/external/llvm-project/lldb/source/Breakpoint/
DWatchpointList.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 …]
/external/llvm-project/lldb/source/API/
DSBWatchpoint.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()
DSBTarget.cpp1385 bool SBTarget::DeleteWatchpoint(watch_id_t wp_id) { in DeleteWatchpoint()
1386 LLDB_RECORD_METHOD(bool, SBTarget, DeleteWatchpoint, (lldb::watch_id_t), in DeleteWatchpoint()
1402 SBWatchpoint SBTarget::FindWatchpointByID(lldb::watch_id_t wp_id) { in FindWatchpointByID()
1404 (lldb::watch_id_t), wp_id); in FindWatchpointByID()
2573 LLDB_REGISTER_METHOD(bool, SBTarget, DeleteWatchpoint, (lldb::watch_id_t)); in RegisterMethods()
2575 (lldb::watch_id_t)); in RegisterMethods()
/external/llvm-project/lldb/bindings/interface/
DSBWatchpoint.i42 watch_id_t
DSBTarget.i854 DeleteWatchpoint (lldb::watch_id_t watch_id);
857 FindWatchpointByID (lldb::watch_id_t watch_id);
/external/llvm-project/lldb/include/lldb/
Dlldb-types.h89 typedef int32_t watch_id_t; typedef
/external/llvm-project/lldb/include/lldb/API/
DSBWatchpoint.h38 watch_id_t GetID();
DSBTarget.h757 bool DeleteWatchpoint(lldb::watch_id_t watch_id);
759 lldb::SBWatchpoint FindWatchpointByID(lldb::watch_id_t watch_id);
/external/llvm-project/lldb/include/lldb/Target/
DTarget.h767 bool DisableWatchpointByID(lldb::watch_id_t watch_id);
769 bool EnableWatchpointByID(lldb::watch_id_t watch_id);
771 bool RemoveWatchpointByID(lldb::watch_id_t watch_id);
773 bool IgnoreWatchpointByID(lldb::watch_id_t watch_id, uint32_t ignore_count);
/external/llvm-project/lldb/source/Target/
DTarget.cpp1278 bool Target::DisableWatchpointByID(lldb::watch_id_t watch_id) { in DisableWatchpointByID()
1297 bool Target::EnableWatchpointByID(lldb::watch_id_t watch_id) { in EnableWatchpointByID()
1316 bool Target::RemoveWatchpointByID(lldb::watch_id_t watch_id) { in RemoveWatchpointByID()
1332 bool Target::IgnoreWatchpointByID(lldb::watch_id_t watch_id, in IgnoreWatchpointByID()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp1852 watch_id_t watch_id = LLDB_INVALID_WATCH_ID; in SetThreadStopInfo()