xref: /freebsd/contrib/llvm-project/lldb/bindings/interface/SBWatchpointOptionsDocstrings.i (revision 8ccc0d235c226d84112561d453c49904398d085c)
1 %feature("docstring",
2 "A container for options to use when creating watchpoints."
3 ) lldb::SBWatchpointOptions;
4 
5 %feature("docstring", "Sets whether the watchpoint should stop on read accesses."
6 ) lldb::SBWatchpointOptions::SetWatchpointTypeRead;
7 %feature("docstring", "Gets whether the watchpoint should stop on read accesses."
8 ) lldb::SBWatchpointOptions::GetWatchpointTypeRead;
9 %feature("docstring", "Sets whether the watchpoint should stop on write accesses. eWatchpointWriteTypeOnModify is the most commonly useful mode, where lldb will stop when the watched value has changed. eWatchpointWriteTypeAlways will stop on any write to the watched region, even if it's the value is the same."
10 ) lldb::SBWatchpointOptions::SetWatchpointTypeWrite;
11 %feature("docstring", "Gets whether the watchpoint should stop on write accesses, returning WatchpointWriteType to indicate the type of write watching that is enabled, or eWatchpointWriteTypeDisabled."
12 ) lldb::SBWatchpointOptions::GetWatchpointTypeWrite;
13