• Home
  • Raw
  • Download

Lines Matching refs:SBWatchpoint

29 SBWatchpoint::SBWatchpoint() { LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBWatchpoint); }  in SBWatchpoint()  function in SBWatchpoint
31 SBWatchpoint::SBWatchpoint(const lldb::WatchpointSP &wp_sp) in SBWatchpoint() function in SBWatchpoint
33 LLDB_RECORD_CONSTRUCTOR(SBWatchpoint, (const lldb::WatchpointSP &), wp_sp); in SBWatchpoint()
36 SBWatchpoint::SBWatchpoint(const SBWatchpoint &rhs) in SBWatchpoint() function in SBWatchpoint
38 LLDB_RECORD_CONSTRUCTOR(SBWatchpoint, (const lldb::SBWatchpoint &), rhs); in SBWatchpoint()
41 const SBWatchpoint &SBWatchpoint::operator=(const SBWatchpoint &rhs) { in operator =()
42 LLDB_RECORD_METHOD(const lldb::SBWatchpoint &, in operator =()
43 SBWatchpoint, operator=,(const lldb::SBWatchpoint &), rhs); in operator =()
49 SBWatchpoint::~SBWatchpoint() = default;
51 watch_id_t SBWatchpoint::GetID() { in GetID()
52 LLDB_RECORD_METHOD_NO_ARGS(lldb::watch_id_t, SBWatchpoint, GetID); in GetID()
63 bool SBWatchpoint::IsValid() const { in IsValid()
64 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBWatchpoint, IsValid); in IsValid()
67 SBWatchpoint::operator bool() const { in operator bool()
68 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBWatchpoint, operator bool); in operator bool()
73 bool SBWatchpoint::operator==(const SBWatchpoint &rhs) const { in operator ==()
75 bool, SBWatchpoint, operator==,(const SBWatchpoint &), rhs); in operator ==()
80 bool SBWatchpoint::operator!=(const SBWatchpoint &rhs) const { in operator !=()
82 bool, SBWatchpoint, operator!=,(const SBWatchpoint &), rhs); in operator !=()
87 SBError SBWatchpoint::GetError() { in GetError()
88 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBError, SBWatchpoint, GetError); in GetError()
98 int32_t SBWatchpoint::GetHardwareIndex() { in GetHardwareIndex()
99 LLDB_RECORD_METHOD_NO_ARGS(int32_t, SBWatchpoint, GetHardwareIndex); in GetHardwareIndex()
113 addr_t SBWatchpoint::GetWatchAddress() { in GetWatchAddress()
114 LLDB_RECORD_METHOD_NO_ARGS(lldb::addr_t, SBWatchpoint, GetWatchAddress); in GetWatchAddress()
128 size_t SBWatchpoint::GetWatchSize() { in GetWatchSize()
129 LLDB_RECORD_METHOD_NO_ARGS(size_t, SBWatchpoint, GetWatchSize); in GetWatchSize()
143 void SBWatchpoint::SetEnabled(bool enabled) { in SetEnabled()
144 LLDB_RECORD_METHOD(void, SBWatchpoint, SetEnabled, (bool), enabled); in SetEnabled()
163 bool SBWatchpoint::IsEnabled() { in IsEnabled()
164 LLDB_RECORD_METHOD_NO_ARGS(bool, SBWatchpoint, IsEnabled); in IsEnabled()
175 uint32_t SBWatchpoint::GetHitCount() { in GetHitCount()
176 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBWatchpoint, GetHitCount); in GetHitCount()
189 uint32_t SBWatchpoint::GetIgnoreCount() { in GetIgnoreCount()
190 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBWatchpoint, GetIgnoreCount); in GetIgnoreCount()
201 void SBWatchpoint::SetIgnoreCount(uint32_t n) { in SetIgnoreCount()
202 LLDB_RECORD_METHOD(void, SBWatchpoint, SetIgnoreCount, (uint32_t), n); in SetIgnoreCount()
212 const char *SBWatchpoint::GetCondition() { in GetCondition()
213 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBWatchpoint, GetCondition); in GetCondition()
224 void SBWatchpoint::SetCondition(const char *condition) { in SetCondition()
225 LLDB_RECORD_METHOD(void, SBWatchpoint, SetCondition, (const char *), in SetCondition()
236 bool SBWatchpoint::GetDescription(SBStream &description, in GetDescription()
238 LLDB_RECORD_METHOD(bool, SBWatchpoint, GetDescription, in GetDescription()
256 void SBWatchpoint::Clear() { in Clear()
257 LLDB_RECORD_METHOD_NO_ARGS(void, SBWatchpoint, Clear); in Clear()
262 lldb::WatchpointSP SBWatchpoint::GetSP() const { in GetSP()
263 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::WatchpointSP, SBWatchpoint, GetSP); in GetSP()
268 void SBWatchpoint::SetSP(const lldb::WatchpointSP &sp) { in SetSP()
269 LLDB_RECORD_METHOD(void, SBWatchpoint, SetSP, (const lldb::WatchpointSP &), in SetSP()
275 bool SBWatchpoint::EventIsWatchpointEvent(const lldb::SBEvent &event) { in EventIsWatchpointEvent()
276 LLDB_RECORD_STATIC_METHOD(bool, SBWatchpoint, EventIsWatchpointEvent, in EventIsWatchpointEvent()
284 SBWatchpoint::GetWatchpointEventTypeFromEvent(const SBEvent &event) { in GetWatchpointEventTypeFromEvent()
285 LLDB_RECORD_STATIC_METHOD(lldb::WatchpointEventType, SBWatchpoint, in GetWatchpointEventTypeFromEvent()
295 SBWatchpoint SBWatchpoint::GetWatchpointFromEvent(const lldb::SBEvent &event) { in GetWatchpointFromEvent()
296 LLDB_RECORD_STATIC_METHOD(lldb::SBWatchpoint, SBWatchpoint, in GetWatchpointFromEvent()
300 SBWatchpoint sb_watchpoint; in GetWatchpointFromEvent()
311 void RegisterMethods<SBWatchpoint>(Registry &R) { in RegisterMethods()
312 LLDB_REGISTER_CONSTRUCTOR(SBWatchpoint, ()); in RegisterMethods()
313 LLDB_REGISTER_CONSTRUCTOR(SBWatchpoint, (const lldb::WatchpointSP &)); in RegisterMethods()
314 LLDB_REGISTER_CONSTRUCTOR(SBWatchpoint, (const lldb::SBWatchpoint &)); in RegisterMethods()
315 LLDB_REGISTER_METHOD(const lldb::SBWatchpoint &, in RegisterMethods()
316 SBWatchpoint, operator=,(const lldb::SBWatchpoint &)); in RegisterMethods()
317 LLDB_REGISTER_METHOD(lldb::watch_id_t, SBWatchpoint, GetID, ()); in RegisterMethods()
318 LLDB_REGISTER_METHOD_CONST(bool, SBWatchpoint, IsValid, ()); in RegisterMethods()
319 LLDB_REGISTER_METHOD_CONST(bool, SBWatchpoint, operator bool, ()); in RegisterMethods()
321 bool, SBWatchpoint, operator==,(const lldb::SBWatchpoint &)); in RegisterMethods()
323 bool, SBWatchpoint, operator!=,(const lldb::SBWatchpoint &)); in RegisterMethods()
324 LLDB_REGISTER_METHOD(lldb::SBError, SBWatchpoint, GetError, ()); in RegisterMethods()
325 LLDB_REGISTER_METHOD(int32_t, SBWatchpoint, GetHardwareIndex, ()); in RegisterMethods()
326 LLDB_REGISTER_METHOD(lldb::addr_t, SBWatchpoint, GetWatchAddress, ()); in RegisterMethods()
327 LLDB_REGISTER_METHOD(size_t, SBWatchpoint, GetWatchSize, ()); in RegisterMethods()
328 LLDB_REGISTER_METHOD(void, SBWatchpoint, SetEnabled, (bool)); in RegisterMethods()
329 LLDB_REGISTER_METHOD(bool, SBWatchpoint, IsEnabled, ()); in RegisterMethods()
330 LLDB_REGISTER_METHOD(uint32_t, SBWatchpoint, GetHitCount, ()); in RegisterMethods()
331 LLDB_REGISTER_METHOD(uint32_t, SBWatchpoint, GetIgnoreCount, ()); in RegisterMethods()
332 LLDB_REGISTER_METHOD(void, SBWatchpoint, SetIgnoreCount, (uint32_t)); in RegisterMethods()
333 LLDB_REGISTER_METHOD(const char *, SBWatchpoint, GetCondition, ()); in RegisterMethods()
334 LLDB_REGISTER_METHOD(void, SBWatchpoint, SetCondition, (const char *)); in RegisterMethods()
335 LLDB_REGISTER_METHOD(bool, SBWatchpoint, GetDescription, in RegisterMethods()
337 LLDB_REGISTER_METHOD(void, SBWatchpoint, Clear, ()); in RegisterMethods()
338 LLDB_REGISTER_METHOD_CONST(lldb::WatchpointSP, SBWatchpoint, GetSP, ()); in RegisterMethods()
339 LLDB_REGISTER_METHOD(void, SBWatchpoint, SetSP, in RegisterMethods()
341 LLDB_REGISTER_STATIC_METHOD(bool, SBWatchpoint, EventIsWatchpointEvent, in RegisterMethods()
343 LLDB_REGISTER_STATIC_METHOD(lldb::WatchpointEventType, SBWatchpoint, in RegisterMethods()
346 LLDB_REGISTER_STATIC_METHOD(lldb::SBWatchpoint, SBWatchpoint, in RegisterMethods()