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

Declarations

tools/lldb/include/lldb/API/SBDefines.h
   56 class LLDB_API SBMemoryRegionInfo;

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
 4339 SWIGINTERN PyObject *lldb_SBMemoryRegionInfo___str__(lldb::SBMemoryRegionInfo *self){
37724   lldb::SBMemoryRegionInfo *result = 0 ;
37729     result = (lldb::SBMemoryRegionInfo *)new lldb::SBMemoryRegionInfo();
37741   lldb::SBMemoryRegionInfo *arg1 = 0 ;
37745   lldb::SBMemoryRegionInfo *result = 0 ;
37758     result = (lldb::SBMemoryRegionInfo *)new lldb::SBMemoryRegionInfo((lldb::SBMemoryRegionInfo const &)*arg1);
37803   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
37828   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
37853   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
37879   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
37905   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
37931   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
37957   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
37983   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
38009   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
38035   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
38036   lldb::SBMemoryRegionInfo *arg2 = 0 ;
38073   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
38074   lldb::SBMemoryRegionInfo *arg2 = 0 ;
38111   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
38149   lldb::SBMemoryRegionInfo *arg1 = (lldb::SBMemoryRegionInfo *) 0 ;
38310   lldb::SBMemoryRegionInfo *arg3 = 0 ;
38356   lldb::SBMemoryRegionInfo *arg2 = 0 ;
46323   lldb::SBMemoryRegionInfo *arg3 = 0 ;
tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
   21   SBMemoryRegionInfo(const lldb::SBMemoryRegionInfo &rhs);
   25   const lldb::SBMemoryRegionInfo &
   26   operator=(const lldb::SBMemoryRegionInfo &rhs);
   76   bool operator==(const lldb::SBMemoryRegionInfo &rhs) const;
   78   bool operator!=(const lldb::SBMemoryRegionInfo &rhs) const;
tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
   30   bool GetMemoryRegionAtIndex(uint32_t idx, SBMemoryRegionInfo &region_info);
   32   void Append(lldb::SBMemoryRegionInfo &region);
tools/lldb/include/lldb/API/SBProcess.h
  381                                     lldb::SBMemoryRegionInfo &region_info);
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,
  253   typedef 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)
  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...); }
  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));
  637               const RArgs &... args) {
  683   template <typename Result> Result RecordResult(Result &&r) {
tools/lldb/source/API/SBMemoryRegionInfo.cpp
   31 SBMemoryRegionInfo::SBMemoryRegionInfo(const SBMemoryRegionInfo &rhs)
   38 const SBMemoryRegionInfo &SBMemoryRegionInfo::
   39 operator=(const SBMemoryRegionInfo &rhs) {
   57 bool SBMemoryRegionInfo::operator==(const SBMemoryRegionInfo &rhs) const {
   65 bool SBMemoryRegionInfo::operator!=(const SBMemoryRegionInfo &rhs) const {
  140 void RegisterMethods<SBMemoryRegionInfo>(Registry &R) {
tools/lldb/source/API/SBMemoryRegionInfoList.cpp
  107     uint32_t idx, SBMemoryRegionInfo &region_info) {
  120 void SBMemoryRegionInfoList::Append(SBMemoryRegionInfo &sb_region) {
tools/lldb/source/API/SBProcess.cpp
 1232                                SBMemoryRegionInfo &sb_region_info) {
tools/lldb/source/API/SBReproducer.cpp
   67   RegisterMethods<SBMemoryRegionInfo>(R);
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
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;
 1633     { typedef _Tp   type; };
 1983     { typedef _Up     type; };