Home
last modified time | relevance | path

Searched refs:SBWatchpoint (Results 1 – 25 of 26) sorted by relevance

12

/llvm-project-15.0.7/lldb/source/API/
H A DSBWatchpoint.cpp29 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 DSBValue.cpp1416 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 DSBTarget.cpp1278 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 DCMakeLists.txt86 SBWatchpoint.cpp
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBWatchpoint.h16 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 DSBValue.h338 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 DSBTarget.h768 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 DSBEvent.h70 friend class SBWatchpoint; variable
H A DSBError.h76 friend class SBWatchpoint; variable
H A DSBStream.h96 friend class SBWatchpoint; variable
H A DSBDefines.h106 class LLDB_API SBWatchpoint; variable
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBWatchpoint.i19 ) 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 DSBTarget.i845 lldb::SBWatchpoint
851 lldb::SBWatchpoint
863 lldb::SBWatchpoint
H A DSBValue.i363 lldb::SBWatchpoint
369 lldb::SBWatchpoint
/llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_events/
H A DTestWatchpointEvents.py90 lldb.SBWatchpoint.EventIsWatchpointEvent(event),
92 found_type = lldb.SBWatchpoint.GetWatchpointEventTypeFromEvent(event)
/llvm-project-15.0.7/lldb/bindings/lua/
H A Dlua-swigsafecast.swig13 void PushSBClass(lua_State *L, lldb::SBWatchpoint *watchpoint_sb) {
H A Dlua-wrapper.swig47 lldb::SBWatchpoint sb_wp(wp_sp);
/llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/API/
H A DBUILD.gn109 "SBWatchpoint.cpp",
/llvm-project-15.0.7/lldb/bindings/
H A Dinterfaces.swig81 %include "./interface/SBWatchpoint.i"
H A Dheaders.swig77 #include "lldb/API/SBWatchpoint.h"
/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-swigsafecast.swig86 return ToSWIGHelper(new lldb::SBWatchpoint(std::move(watchpoint_sp)),
/llvm-project-15.0.7/lldb/docs/
H A D.htaccess102 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 DTestDefaultConstructorForAPIObjects.py354 obj = lldb.SBWatchpoint()
/llvm-project-15.0.7/lldb/utils/lui/
H A Dlldbutil.py134 tuple = (lldb.SBTarget, lldb.SBBreakpointLocation, lldb.SBWatchpoint)
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py192 tuple = (lldb.SBTarget, lldb.SBBreakpointLocation, lldb.SBWatchpoint)

12