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

Declarations

tools/lldb/include/lldb/API/SBDefines.h
   65 class LLDB_API SBSection;

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
 4384 SWIGINTERN PyObject *lldb_SBSection___str__(lldb::SBSection *self){
 4697   lldb::SBSection arg1 ;
 4716       lldb::SBSection * temp = reinterpret_cast< lldb::SBSection * >(argp1);
 5169   lldb::SBSection result;
 5218   lldb::SBSection arg2 ;
 5244       lldb::SBSection * temp = reinterpret_cast< lldb::SBSection * >(argp2);
39049   lldb::SBSection result;
39670   lldb::SBSection result;
47781   lldb::SBSection *result = 0 ;
47786     result = (lldb::SBSection *)new lldb::SBSection();
47798   lldb::SBSection *arg1 = 0 ;
47802   lldb::SBSection *result = 0 ;
47815     result = (lldb::SBSection *)new lldb::SBSection((lldb::SBSection const &)*arg1);
47860   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
47885   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
47911   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
47937   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
47963   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
47967   lldb::SBSection result;
47989   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
47998   lldb::SBSection result;
48027   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48053   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48061   lldb::SBSection result;
48088   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48114   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48152   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48178   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48204   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48230   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48256   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48352   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48378   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48404   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48430   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48468   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48469   lldb::SBSection *arg2 = 0 ;
48506   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
48507   lldb::SBSection *arg2 = 0 ;
48544   lldb::SBSection *arg1 = (lldb::SBSection *) 0 ;
54494   lldb::SBSection arg2 ;
54521       lldb::SBSection * temp = reinterpret_cast< lldb::SBSection * >(argp2);
54546   lldb::SBSection arg2 ;
54569       lldb::SBSection * temp = reinterpret_cast< lldb::SBSection * >(argp2);
tools/lldb/include/lldb/API/SBAddress.h
   23   SBAddress(lldb::SBSection section, lldb::addr_t offset);
   46   void SetAddress(lldb::SBSection section, lldb::addr_t offset);
   72   lldb::SBSection GetSection();
tools/lldb/include/lldb/API/SBModule.h
  111   lldb::SBSection FindSection(const char *sect_name);
  150   lldb::SBSection GetSectionAtIndex(size_t idx);
tools/lldb/include/lldb/API/SBSection.h
   21   SBSection(const lldb::SBSection &rhs);
   25   const lldb::SBSection &operator=(const lldb::SBSection &rhs);
   25   const lldb::SBSection &operator=(const lldb::SBSection &rhs);
   33   lldb::SBSection GetParent();
   35   lldb::SBSection FindSubSection(const char *sect_name);
   39   lldb::SBSection GetSubSectionAtIndex(size_t idx);
   79   bool operator==(const lldb::SBSection &rhs);
   81   bool operator!=(const lldb::SBSection &rhs);
tools/lldb/include/lldb/API/SBTarget.h
  338   lldb::SBError SetSectionLoadAddress(lldb::SBSection section,
  350   lldb::SBError ClearSectionLoadAddress(lldb::SBSection section);
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) {
  245   typedef typename std::conditional<std::is_trivially_copyable<T>::value, ValueTag, NotImplementedTag>::type type;
  249       typename std::conditional<std::is_fundamental<T>::value,
  277   template <typename T> T Deserialize() {
  281     return Read<T>(typename serializer_tag<T>::type());
  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)
  310   template <typename T> T Read(NotImplementedTag) {
  311     m_buffer = m_buffer.drop_front(sizeof(T));
  315   template <typename T> T Read(ValueTag) {
  323   template <typename T> T Read(PointerTag) {
  329   template <typename T> T Read(ReferenceTag) {
  340   template <typename T> T Read(FundamentalPointerTag) {
  349   template <typename T> T Read(FundamentalReferenceTag) {
  375     static Result doit(Deserializer &deserializer,
  376                        Result (*f)(Deserialized..., Head, Tail...),
  376                        Result (*f)(Deserialized..., Head, Tail...),
  376                        Result (*f)(Deserialized..., Head, Tail...),
  376                        Result (*f)(Deserialized..., Head, Tail...),
  377                        Deserialized... d) {
  378       return DeserializationHelper<Tail...>::
  379           template deserialized<Result, Deserialized..., Head>::doit(
  379           template deserialized<Result, Deserialized..., Head>::doit(
  379           template deserialized<Result, Deserialized..., Head>::doit(
  380               deserializer, f, d..., deserializer.Deserialize<Head>());
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  388                        Deserialized... d) {
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  412   Result (*f)(Args...);
  412   Result (*f)(Args...);
  419   DefaultReplayer(void (*f)(Args...)) : Replayer(), f(f) {}
  422     DeserializationHelper<Args...>::template deserialized<void>::doit(
  427   void (*f)(Args...);
  501   static Class *doit(Args... args) { return new Class(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...); }
  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...); }
  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...),
  636   void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...),
  637               const RArgs &... args) {
  652             typename std::remove_reference<Result>::type>::type>::value) {
  662   void Record(Serializer &serializer, Registry &registry, void (*f)(Args...),
  663               const Args &... args) {
  683   template <typename Result> Result RecordResult(Result &&r) {
tools/lldb/source/API/SBAddress.cpp
   40 SBAddress::SBAddress(lldb::SBSection section, lldb::addr_t offset)
   95 void SBAddress::SetAddress(lldb::SBSection section, lldb::addr_t offset) {
  167 lldb::SBSection SBAddress::GetSection() {
  170   lldb::SBSection sb_section;
tools/lldb/source/API/SBModule.cpp
  376 SBSection SBModule::GetSectionAtIndex(size_t idx) {
  380   SBSection sb_section;
  565 SBSection SBModule::FindSection(const char *sect_name) {
  569   SBSection sb_section;
tools/lldb/source/API/SBReproducer.cpp
   78   RegisterMethods<SBSection>(R);
tools/lldb/source/API/SBSection.cpp
   27 SBSection::SBSection(const SBSection &rhs) : m_opaque_wp(rhs.m_opaque_wp) {
   39 const SBSection &SBSection::operator=(const SBSection &rhs) {
   39 const SBSection &SBSection::operator=(const SBSection &rhs) {
   69 lldb::SBSection SBSection::GetParent() {
   72   lldb::SBSection sb_section;
   82 lldb::SBSection SBSection::FindSubSection(const char *sect_name) {
   86   lldb::SBSection sb_section;
  107 lldb::SBSection SBSection::GetSubSectionAtIndex(size_t idx) {
  111   lldb::SBSection sb_section;
  253 bool SBSection::operator==(const SBSection &rhs) {
  264 bool SBSection::operator!=(const SBSection &rhs) {
  296 void RegisterMethods<SBSection>(Registry &R) {
tools/lldb/source/API/SBTarget.cpp
 2116 SBError SBTarget::SetSectionLoadAddress(lldb::SBSection section,
 2155 SBError SBTarget::ClearSectionLoadAddress(lldb::SBSection section) {
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;
 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>