From 9e6d35490a6542f9c97607f93c2ef8ca8e03cbcc Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Wed, 6 Jan 2016 20:12:03 +0000 Subject: Vendor import of lldb trunk r256945: https://llvm.org/svn/llvm-project/lldb/trunk@256945 --- www/cpp_reference/html/SBSection_8h_source.html | 149 ++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 www/cpp_reference/html/SBSection_8h_source.html (limited to 'www/cpp_reference/html/SBSection_8h_source.html') diff --git a/www/cpp_reference/html/SBSection_8h_source.html b/www/cpp_reference/html/SBSection_8h_source.html new file mode 100644 index 0000000000000..1fcec425f8c81 --- /dev/null +++ b/www/cpp_reference/html/SBSection_8h_source.html @@ -0,0 +1,149 @@ + + + + + +LLVM: SBSection.h Source File + + +

LLDB API Documentation

+ + + + + +
+
+
SBSection.h
+
+
+Go to the documentation of this file.
1 //===-- SBSection.h ---------------------------------------------*- C++ -*-===//
+
2 //
+
3 // The LLVM Compiler Infrastructure
+
4 //
+
5 // This file is distributed under the University of Illinois Open Source
+
6 // License. See LICENSE.TXT for details.
+
7 //
+
8 //===----------------------------------------------------------------------===//
+
9 
+
10 #ifndef LLDB_SBSection_h_
+
11 #define LLDB_SBSection_h_
+
12 
+
13 #include "lldb/API/SBDefines.h"
+
14 #include "lldb/API/SBData.h"
+
15 
+
16 namespace lldb {
+
17 
+
18 class SBSection
+
19 {
+
20 public:
+
21 
+
22  SBSection ();
+
23 
+
24  SBSection (const lldb::SBSection &rhs);
+
25 
+
26  ~SBSection ();
+
27 
+
28  const lldb::SBSection &
+
29  operator = (const lldb::SBSection &rhs);
+
30 
+
31  bool
+
32  IsValid () const;
+
33 
+
34  const char *
+
35  GetName ();
+
36 
+ +
38  GetParent();
+
39 
+ +
41  FindSubSection (const char *sect_name);
+
42 
+
43  size_t
+ +
45 
+ +
47  GetSubSectionAtIndex (size_t idx);
+
48 
+
49  lldb::addr_t
+
50  GetFileAddress ();
+
51 
+
52  lldb::addr_t
+ +
54 
+
55  lldb::addr_t
+
56  GetByteSize ();
+
57 
+
58  uint64_t
+
59  GetFileOffset ();
+
60 
+
61  uint64_t
+
62  GetFileByteSize ();
+
63 
+ +
65  GetSectionData ();
+
66 
+ +
68  GetSectionData (uint64_t offset,
+
69  uint64_t size);
+
70 
+
71  SectionType
+
72  GetSectionType ();
+
73 
+
74  bool
+
75  operator == (const lldb::SBSection &rhs);
+
76 
+
77  bool
+
78  operator != (const lldb::SBSection &rhs);
+
79 
+
80  bool
+
81  GetDescription (lldb::SBStream &description);
+
82 
+
83 
+
84 private:
+
85 
+
86  friend class SBAddress;
+
87  friend class SBModule;
+
88  friend class SBTarget;
+
89 
+
90  SBSection (const lldb::SectionSP &section_sp);
+
91 
+
92  lldb::SectionSP
+
93  GetSP() const;
+
94 
+
95  void
+
96  SetSP(const lldb::SectionSP &section_sp);
+
97 
+
98  lldb::SectionWP m_opaque_wp;
+
99 };
+
100 
+
101 
+
102 } // namespace lldb
+
103 
+
104 #endif // LLDB_SBSection_h_
+
+
+ +
+ + + -- cgit v1.2.3