reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/API/SBDefines.h
   94 class LLDB_API SBWatchpoint;

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
 4608 SWIGINTERN PyObject *lldb_SBWatchpoint___str__(lldb::SBWatchpoint *self){
58488   lldb::SBWatchpoint result;
58558   lldb::SBWatchpoint result;
58687   lldb::SBWatchpoint result;
76317   lldb::SBWatchpoint result;
76382   lldb::SBWatchpoint result;
78247   lldb::SBWatchpoint *result = 0 ;
78252     result = (lldb::SBWatchpoint *)new lldb::SBWatchpoint();
78264   lldb::SBWatchpoint *arg1 = 0 ;
78268   lldb::SBWatchpoint *result = 0 ;
78281     result = (lldb::SBWatchpoint *)new lldb::SBWatchpoint((lldb::SBWatchpoint const &)*arg1);
78326   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78351   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78377   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78403   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78404   lldb::SBWatchpoint *arg2 = 0 ;
78441   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78442   lldb::SBWatchpoint *arg2 = 0 ;
78479   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78505   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78531   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78557   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78583   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78609   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78643   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78669   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78695   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78721   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78755   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78781   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78818   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
78882     result = (bool)lldb::SBWatchpoint::EventIsWatchpointEvent((lldb::SBEvent const &)*arg1);
78911     result = (lldb::WatchpointEventType)lldb::SBWatchpoint::GetWatchpointEventTypeFromEvent((lldb::SBEvent const &)*arg1);
78927   lldb::SBWatchpoint result;
78940     result = lldb::SBWatchpoint::GetWatchpointFromEvent((lldb::SBEvent const &)*arg1);
78952   lldb::SBWatchpoint *arg1 = (lldb::SBWatchpoint *) 0 ;
79606     lldb::SBWatchpoint sb_wp(wp_sp);
tools/lldb/include/lldb/API/SBTarget.h
  742   lldb::SBWatchpoint GetWatchpointAtIndex(uint32_t idx) const;
  746   lldb::SBWatchpoint FindWatchpointByID(lldb::watch_id_t watch_id);
  748   lldb::SBWatchpoint WatchAddress(lldb::addr_t addr, size_t size, bool read,
tools/lldb/include/lldb/API/SBValue.h
  334   lldb::SBWatchpoint Watch(bool resolve_location, bool read, bool write,
  338   lldb::SBWatchpoint Watch(bool resolve_location, bool read, bool write);
  364   lldb::SBWatchpoint WatchPointee(bool resolve_location, bool read, bool write,
tools/lldb/include/lldb/API/SBWatchpoint.h
   20   SBWatchpoint(const lldb::SBWatchpoint &rhs);
   26   const lldb::SBWatchpoint &operator=(const lldb::SBWatchpoint &rhs);
   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);
tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
   31 inline void stringify_append(llvm::raw_string_ostream &ss, const T &t) {
   47 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head) {
   52 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head,
   53                              const Tail &... tail) {
   59 template <typename... Ts> inline std::string stringify_args(const Ts &... ts) {
  201   template <typename T> T *GetObjectForIndex(unsigned idx) {
  208   template <typename T> void AddObjectForIndex(unsigned idx, T *object) {
  249       typename std::conditional<std::is_fundamental<T>::value,
  285   template <typename T> void HandleReplayResult(const T &t) {
  287     if (std::is_fundamental<T>::value)
  290     m_index_to_object.AddObjectForIndex(result, new T(t));
  294   template <typename T> void HandleReplayResult(T *t) {
  296     if (std::is_fundamental<T>::value)
  375     static Result doit(Deserializer &deserializer,
  376                        Result (*f)(Deserialized..., Head, Tail...),
  379           template deserialized<Result, Deserialized..., Head>::doit(
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  412   Result (*f)(Args...);
  501   static Class *doit(Args... args) { return new Class(args...); }
  501   static Class *doit(Args... args) { return new Class(args...); }
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  517     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  517     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  517     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  524     static void doit(Class *c, Args... args) { (c->*m)(args...); }
  524     static void doit(Class *c, Args... args) { (c->*m)(args...); }
  535   template <typename T> unsigned GetIndexForObject(T *t) {
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  563   template <typename T> void Serialize(T *t) {
  564     if (std::is_fundamental<T>::value) {
  575   template <typename T> void Serialize(T &t) {
  576     if (std::is_fundamental<T>::value) {
  577       m_stream.write(reinterpret_cast<const char *>(&t), sizeof(T));
  636   void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...),
  637               const RArgs &... args) {
  652             typename std::remove_reference<Result>::type>::type>::value) {
  683   template <typename Result> Result RecordResult(Result &&r) {
  683   template <typename Result> Result RecordResult(Result &&r) {
  690     return std::forward<Result>(r);
tools/lldb/scripts/Python/python-swigsafecast.swig
    9 SBTypeToSWIGWrapper (SBClass& sb_object)
   16 SBTypeToSWIGWrapper (const SBClass& sb_object)
   95 SBTypeToSWIGWrapper (lldb::SBWatchpoint* watchpoint_sb)
tools/lldb/source/API/SBReproducer.cpp
  105   RegisterMethods<SBWatchpoint>(R);
tools/lldb/source/API/SBTarget.cpp
 1351 SBWatchpoint SBTarget::GetWatchpointAtIndex(uint32_t idx) const {
 1355   SBWatchpoint sb_watchpoint;
 1381 SBWatchpoint SBTarget::FindWatchpointByID(lldb::watch_id_t wp_id) {
 1386   SBWatchpoint sb_watchpoint;
 1400 lldb::SBWatchpoint SBTarget::WatchAddress(lldb::addr_t addr, size_t size,
 1407   SBWatchpoint sb_watchpoint;
tools/lldb/source/API/SBValue.cpp
 1467 lldb::SBWatchpoint SBValue::Watch(bool resolve_location, bool read, bool write,
 1473   SBWatchpoint sb_watchpoint;
 1532 lldb::SBWatchpoint SBValue::Watch(bool resolve_location, bool read,
 1541 lldb::SBWatchpoint SBValue::WatchPointee(bool resolve_location, bool read,
 1547   SBWatchpoint sb_watchpoint;
tools/lldb/source/API/SBWatchpoint.cpp
   36 SBWatchpoint::SBWatchpoint(const SBWatchpoint &rhs)
   41 const SBWatchpoint &SBWatchpoint::operator=(const SBWatchpoint &rhs) {
   41 const SBWatchpoint &SBWatchpoint::operator=(const SBWatchpoint &rhs) {
   73 bool SBWatchpoint::operator==(const SBWatchpoint &rhs) const {
   80 bool SBWatchpoint::operator!=(const SBWatchpoint &rhs) const {
  295 SBWatchpoint SBWatchpoint::GetWatchpointFromEvent(const lldb::SBEvent &event) {
  300   SBWatchpoint sb_watchpoint;
  311 void RegisterMethods<SBWatchpoint>(Registry &R) {
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  595 		   is_null_pointer<_Tp>>::type
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1979     { typedef _Tp     type; };
 1983     { typedef _Up     type; };
 1988     : public __remove_pointer_helper<_Tp, typename remove_cv<_Tp>::type>
 1988     : public __remove_pointer_helper<_Tp, typename remove_cv<_Tp>::type>