| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBWatchpoint.cpp | 29 SBWatchpoint::SBWatchpoint() { LLDB_INSTRUMENT_VA(this); } in SBWatchpoint() function in SBWatchpoint 31 SBWatchpoint::SBWatchpoint(const lldb::WatchpointSP &wp_sp) in SBWatchpoint() function in SBWatchpoint 36 SBWatchpoint::SBWatchpoint(const SBWatchpoint &rhs) in SBWatchpoint() function in SBWatchpoint 41 const SBWatchpoint &SBWatchpoint::operator=(const SBWatchpoint &rhs) { in operator =() 48 SBWatchpoint::~SBWatchpoint() = default; 50 watch_id_t SBWatchpoint::GetID() { in GetID() 71 bool SBWatchpoint::operator==(const SBWatchpoint &rhs) const { in operator ==() 77 bool SBWatchpoint::operator!=(const SBWatchpoint &rhs) const { in operator !=() 249 void SBWatchpoint::Clear() { in Clear() 284 SBWatchpoint SBWatchpoint::GetWatchpointFromEvent(const lldb::SBEvent &event) { in GetWatchpointFromEvent() [all …]
|
| H A D | SBValue.cpp | 1416 lldb::SBWatchpoint SBValue::Watch(bool resolve_location, bool read, bool write, in Watch() 1420 SBWatchpoint sb_watchpoint; in Watch() 1479 lldb::SBWatchpoint SBValue::Watch(bool resolve_location, bool read, in Watch() 1487 lldb::SBWatchpoint SBValue::WatchPointee(bool resolve_location, bool read, in WatchPointee() 1491 SBWatchpoint sb_watchpoint; in WatchPointee()
|
| H A D | SBTarget.cpp | 1278 SBWatchpoint SBTarget::GetWatchpointAtIndex(uint32_t idx) const { in GetWatchpointAtIndex() 1281 SBWatchpoint sb_watchpoint; in GetWatchpointAtIndex() 1305 SBWatchpoint SBTarget::FindWatchpointByID(lldb::watch_id_t wp_id) { in FindWatchpointByID() 1308 SBWatchpoint sb_watchpoint; in FindWatchpointByID() 1322 lldb::SBWatchpoint SBTarget::WatchAddress(lldb::addr_t addr, size_t size, in WatchAddress() 1327 SBWatchpoint sb_watchpoint; in WatchAddress()
|
| H A D | CMakeLists.txt | 86 SBWatchpoint.cpp
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBWatchpoint.h | 16 class LLDB_API SBWatchpoint { 18 SBWatchpoint(); 20 SBWatchpoint(const lldb::SBWatchpoint &rhs); 22 SBWatchpoint(const lldb::WatchpointSP &wp_sp); 24 ~SBWatchpoint(); 26 const lldb::SBWatchpoint &operator=(const lldb::SBWatchpoint &rhs); 30 bool operator==(const SBWatchpoint &rhs) const; 32 bool operator!=(const SBWatchpoint &rhs) const; 74 static lldb::SBWatchpoint GetWatchpointFromEvent(const lldb::SBEvent &event);
|
| H A D | SBValue.h | 338 lldb::SBWatchpoint Watch(bool resolve_location, bool read, bool write, 342 lldb::SBWatchpoint Watch(bool resolve_location, bool read, bool write); 368 lldb::SBWatchpoint WatchPointee(bool resolve_location, bool read, bool write,
|
| H A D | SBTarget.h | 768 lldb::SBWatchpoint GetWatchpointAtIndex(uint32_t idx) const; 772 lldb::SBWatchpoint FindWatchpointByID(lldb::watch_id_t watch_id); 774 lldb::SBWatchpoint WatchAddress(lldb::addr_t addr, size_t size, bool read,
|
| H A D | SBEvent.h | 70 friend class SBWatchpoint; variable
|
| H A D | SBError.h | 76 friend class SBWatchpoint; variable
|
| H A D | SBStream.h | 96 friend class SBWatchpoint; variable
|
| H A D | SBDefines.h | 106 class LLDB_API SBWatchpoint; variable
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBWatchpoint.i | 19 ) SBWatchpoint; 20 class SBWatchpoint 24 SBWatchpoint (); 26 SBWatchpoint (const lldb::SBWatchpoint &rhs); 28 ~SBWatchpoint (); 35 bool operator==(const SBWatchpoint &rhs) const; 37 bool operator!=(const SBWatchpoint &rhs) const; 90 static lldb::SBWatchpoint 93 STRING_EXTENSION_LEVEL(SBWatchpoint, lldb::eDescriptionLevelVerbose)
|
| H A D | SBTarget.i | 845 lldb::SBWatchpoint 851 lldb::SBWatchpoint 863 lldb::SBWatchpoint
|
| H A D | SBValue.i | 363 lldb::SBWatchpoint 369 lldb::SBWatchpoint
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_events/ |
| H A D | TestWatchpointEvents.py | 90 lldb.SBWatchpoint.EventIsWatchpointEvent(event), 92 found_type = lldb.SBWatchpoint.GetWatchpointEventTypeFromEvent(event)
|
| /llvm-project-15.0.7/lldb/bindings/lua/ |
| H A D | lua-swigsafecast.swig | 13 void PushSBClass(lua_State *L, lldb::SBWatchpoint *watchpoint_sb) {
|
| H A D | lua-wrapper.swig | 47 lldb::SBWatchpoint sb_wp(wp_sp);
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/API/ |
| H A D | BUILD.gn | 109 "SBWatchpoint.cpp",
|
| /llvm-project-15.0.7/lldb/bindings/ |
| H A D | interfaces.swig | 81 %include "./interface/SBWatchpoint.i"
|
| H A D | headers.swig | 77 #include "lldb/API/SBWatchpoint.h"
|
| /llvm-project-15.0.7/lldb/bindings/python/ |
| H A D | python-swigsafecast.swig | 86 return ToSWIGHelper(new lldb::SBWatchpoint(std::move(watchpoint_sp)),
|
| /llvm-project-15.0.7/lldb/docs/ |
| H A D | .htaccess | 102 Redirect 301 /python_reference/lldb.SBWatchpoint-class.html https://lldb.llvm.org/python_api/lldb.S…
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | TestDefaultConstructorForAPIObjects.py | 354 obj = lldb.SBWatchpoint()
|
| /llvm-project-15.0.7/lldb/utils/lui/ |
| H A D | lldbutil.py | 134 tuple = (lldb.SBTarget, lldb.SBBreakpointLocation, lldb.SBWatchpoint)
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbutil.py | 192 tuple = (lldb.SBTarget, lldb.SBBreakpointLocation, lldb.SBWatchpoint)
|