Home
last modified time | relevance | path

Searched refs:offset_t (Results 1 – 25 of 105) sorted by relevance

12345

/external/lldb/include/lldb/Core/
DDataExtractor.h89 …DataExtractor (const void* data, lldb::offset_t data_length, lldb::ByteOrder byte_order, uint32_t …
133 DataExtractor (const DataExtractor& data, lldb::offset_t offset, lldb::offset_t length);
207 lldb::offset_t
209 lldb::offset_t offset,
210 lldb::offset_t length,
276 lldb::offset_t
278 lldb::offset_t offset,
303 DumpUUID (Stream *s, lldb::offset_t offset) const;
335 …ExtractBytes (lldb::offset_t offset, lldb::offset_t length, lldb::ByteOrder dst_byte_order, void *…
356 GetAddress (lldb::offset_t *offset_ptr) const;
[all …]
DDataBufferHeap.h53 DataBufferHeap (lldb::offset_t n, uint8_t ch);
64 DataBufferHeap (const void *src, lldb::offset_t src_len);
90 virtual lldb::offset_t
107 lldb::offset_t
108 SetByteSize (lldb::offset_t byte_size);
122 CopyData (const void *src, lldb::offset_t src_len);
DDataBufferMemoryMap.h73 virtual lldb::offset_t
110 lldb::offset_t offset = 0,
111 lldb::offset_t length = SIZE_MAX,
139 lldb::offset_t offset,
140 lldb::offset_t length,
151 lldb::offset_t m_size; ///< The size of the data the user got when data was requested
DSection.h120 lldb::offset_t file_offset,
121 lldb::offset_t file_size,
133 lldb::offset_t file_offset,
134 lldb::offset_t file_size,
169 lldb::offset_t
176 SetFileOffset (lldb::offset_t file_offset) in SetFileOffset()
181 lldb::offset_t
188 SetFileSize (lldb::offset_t file_size) in SetFileSize()
294 lldb::offset_t m_file_offset; // Object file offset (if any)
295 …lldb::offset_t m_file_size; // Object file size (can be smaller than m_byte_size for zero …
/external/lldb/tools/debugserver/source/
DDNBDataRef.h47 typedef uint32_t offset_t; typedef
59 offset_t BytesLeft (offset_t offset) const in BytesLeft()
61 const offset_t size = GetSize(); in BytesLeft()
67 bool ValidOffset(offset_t offset) const in ValidOffset()
71 bool ValidOffsetForDataOfSize(offset_t offset, uint32_t num_bytes) const in ValidOffsetForDataOfSize()
93 uint8_t Get8(offset_t *offset_ptr) const;
94 uint16_t Get16(offset_t *offset_ptr) const;
95 uint32_t Get32(offset_t *offset_ptr) const;
96 uint64_t Get64(offset_t *offset_ptr) const;
97 uint32_t GetMax32(offset_t *offset_ptr, uint32_t byte_size) const;
[all …]
DDNBDataRef.cpp65 DNBDataRef::Get8(offset_t *offset_ptr) const in Get8()
81 DNBDataRef::Get16(offset_t *offset_ptr) const in Get16()
103 DNBDataRef::Get32(offset_t *offset_ptr) const in Get32()
124 DNBDataRef::Get64(offset_t *offset_ptr) const in Get64()
148 DNBDataRef::GetMax32(offset_t *offset_ptr, uint32_t byte_size) const in GetMax32()
170 DNBDataRef::GetMax64(offset_t *offset_ptr, uint32_t size) const in GetMax64()
192 DNBDataRef::GetPointer(offset_t *offset_ptr) const in GetPointer()
202 DNBDataRef::GetCStr(offset_t *offset_ptr, uint32_t fixed_length) const in GetCStr()
223 DNBDataRef::GetData(offset_t *offset_ptr, uint32_t length) const in GetData()
239 DNBDataRef::Get_ULEB128 (offset_t *offset_ptr) const in Get_ULEB128()
[all …]
/external/lldb/source/Plugins/ObjectContainer/BSD-Archive/
DObjectContainerBSDArchive.h44 lldb::offset_t data_offset,
46 lldb::offset_t offset,
47 lldb::offset_t length);
52 lldb::offset_t data_offset,
53 lldb::offset_t file_offset,
54 lldb::offset_t length,
65 lldb::offset_t data_offset,
67 lldb::offset_t offset,
68 lldb::offset_t length);
107 lldb::offset_t
[all …]
DObjectContainerBSDArchive.cpp54 lldb::offset_t
55 ObjectContainerBSDArchive::Object::Extract (const DataExtractor& data, lldb::offset_t offset) in Extract()
110 lldb::offset_t file_offset, in Archive()
130 lldb::offset_t offset = 0; in ParseObjects()
183 …ive (const FileSpec &file, const ArchSpec &arch, const TimeValue &time, lldb::offset_t file_offset) in FindCachedArchive()
230 lldb::offset_t file_offset, in ParseAndCacheArchiveForFile()
301 lldb::offset_t data_offset, in CreateInstance()
303 lldb::offset_t file_offset, in CreateInstance()
304 lldb::offset_t length) in CreateInstance()
326 lldb::offset_t archive_data_offset = 0; in CreateInstance()
[all …]
/external/lldb/include/lldb/Expression/
DDWARFExpression.h62 lldb::offset_t data_offset,
63 lldb::offset_t data_length);
186 … SetOpcodeData(const DataExtractor& data, lldb::offset_t data_offset, lldb::offset_t data_length);
214 lldb::offset_t data_offset,
215 lldb::offset_t data_length);
336 const lldb::offset_t offset,
337 const lldb::offset_t length,
399 lldb::offset_t offset,
400 lldb::offset_t length,
407 lldb::offset_t &offset,
[all …]
/external/lldb/include/lldb/API/
DSBData.h52 GetFloat (lldb::SBError& error, lldb::offset_t offset);
55 GetDouble (lldb::SBError& error, lldb::offset_t offset);
58 GetLongDouble (lldb::SBError& error, lldb::offset_t offset);
61 GetAddress (lldb::SBError& error, lldb::offset_t offset);
64 GetUnsignedInt8 (lldb::SBError& error, lldb::offset_t offset);
67 GetUnsignedInt16 (lldb::SBError& error, lldb::offset_t offset);
70 GetUnsignedInt32 (lldb::SBError& error, lldb::offset_t offset);
73 GetUnsignedInt64 (lldb::SBError& error, lldb::offset_t offset);
76 GetSignedInt8 (lldb::SBError& error, lldb::offset_t offset);
79 GetSignedInt16 (lldb::SBError& error, lldb::offset_t offset);
[all …]
/external/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
DObjectContainerUniversalMachO.h40 lldb::offset_t data_offset,
42 lldb::offset_t offset,
43 lldb::offset_t length);
48 lldb::offset_t data_offset,
49 lldb::offset_t file_offset,
50 lldb::offset_t length,
61 lldb::offset_t data_offset,
63 lldb::offset_t offset,
64 lldb::offset_t length);
DObjectContainerUniversalMachO.cpp59 lldb::offset_t data_offset, in CreateInstance()
61 lldb::offset_t file_offset, in CreateInstance()
62 lldb::offset_t length in CreateInstance()
86 lldb::offset_t offset = 0; in MagicBytesMatch()
95 lldb::offset_t data_offset, in ObjectContainerUniversalMachO()
97 lldb::offset_t file_offset, in ObjectContainerUniversalMachO()
98 lldb::offset_t length in ObjectContainerUniversalMachO()
131 lldb::offset_t offset = 0; in ParseHeader()
247 lldb::offset_t data_offset = 0; in GetObjectFile()
279 lldb::offset_t data_offset, in GetModuleSpecifications()
[all …]
/external/lldb/source/Core/
DDataExtractor.cpp46 ReadInt16(const unsigned char* ptr, offset_t offset) in ReadInt16()
51 ReadInt32 (const unsigned char* ptr, offset_t offset) in ReadInt32()
57 ReadInt64(const unsigned char* ptr, offset_t offset) in ReadInt64()
80 ReadSwapInt16(const unsigned char* ptr, offset_t offset) in ReadSwapInt16()
86 ReadSwapInt32 (const unsigned char* ptr, offset_t offset) in ReadSwapInt32()
91 ReadSwapInt64(const unsigned char* ptr, offset_t offset) in ReadSwapInt64()
130 DataExtractor::DataExtractor (const void* data, offset_t length, ByteOrder endian, uint32_t addr_si… in DataExtractor()
163 DataExtractor::DataExtractor (const DataExtractor& data, offset_t offset, offset_t length) : in DataExtractor()
172 offset_t bytes_available = data.GetByteSize() - offset; in DataExtractor()
260 lldb::offset_t
[all …]
/external/lldb/include/lldb/
Dlldb-private-interfaces.h22 … lldb::DataBufferSP& data_sp, lldb::offset_t data_offset, const FileSpec *file, lldb::offset_t off…
23 …c &file, lldb::DataBufferSP& data_sp, lldb::offset_t data_offset, lldb::offset_t file_offset, lldb…
24 …db::DataBufferSP& data_sp, lldb::offset_t data_offset, const FileSpec* file, lldb::offset_t file_o…
/external/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.h47 lldb::offset_t data_offset,
49 lldb::offset_t file_offset,
50 lldb::offset_t length);
61 lldb::offset_t data_offset,
62 lldb::offset_t file_offset,
63 lldb::offset_t length,
76 lldb::offset_t data_offset,
78 lldb::offset_t offset,
79 lldb::offset_t length);
159 lldb::offset_t *data_offset_ptr,
[all …]
/external/lldb/source/Plugins/ObjectFile/ELF/
DELFHeader.cpp29 lldb::offset_t *offset, in GetMaxU64()
33 const lldb::offset_t saved_offset = *offset; in GetMaxU64()
40 lldb::offset_t *offset, in GetMaxU64()
45 lldb::offset_t saved_offset = *offset; in GetMaxU64()
60 lldb::offset_t *offset, in GetMaxS64()
64 const lldb::offset_t saved_offset = *offset; in GetMaxS64()
71 lldb::offset_t *offset, in GetMaxS64()
76 lldb::offset_t saved_offset = *offset; in GetMaxS64()
108 ELFHeader::Parse(lldb_private::DataExtractor &data, lldb::offset_t *offset) in Parse()
201 lldb::offset_t *offset) in Parse()
[all …]
DELFHeader.h126 Parse(lldb_private::DataExtractor &data, lldb::offset_t *offset);
184 Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset);
219 Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset);
272 Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset);
311 Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset);
339 Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset);
398 Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset);
DObjectFileELF.h51 lldb::offset_t data_offset,
53 lldb::offset_t file_offset,
54 lldb::offset_t length);
65 lldb::offset_t data_offset,
66 lldb::offset_t file_offset,
67 lldb::offset_t length,
153 lldb::offset_t data_offset,
155 lldb::offset_t offset,
156 lldb::offset_t length);
/external/lldb/include/lldb/Symbol/
DObjectFile.h92 lldb::offset_t file_offset,
93 lldb::offset_t length,
95 lldb::offset_t data_offset);
153 lldb::offset_t file_offset,
154 lldb::offset_t file_size,
156 lldb::offset_t &data_offset);
184 lldb::offset_t file_offset,
185 lldb::offset_t file_size,
191 lldb::offset_t data_offset,
192 lldb::offset_t file_offset,
[all …]
/external/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.h40 lldb::offset_t data_offset,
42 lldb::offset_t offset,
43 lldb::offset_t length);
54 lldb::offset_t data_offset,
55 lldb::offset_t file_offset,
56 lldb::offset_t length,
65 lldb::offset_t data_offset,
67 lldb::offset_t file_offset,
68 lldb::offset_t length);
226 bool ParseCOFFHeader (lldb::offset_t *offset_ptr);
[all …]
/external/lldb/scripts/Python/interface/
DSBData.i45 GetFloat (lldb::SBError& error, lldb::offset_t offset);
48 GetDouble (lldb::SBError& error, lldb::offset_t offset);
51 GetLongDouble (lldb::SBError& error, lldb::offset_t offset);
54 GetAddress (lldb::SBError& error, lldb::offset_t offset);
57 GetUnsignedInt8 (lldb::SBError& error, lldb::offset_t offset);
60 GetUnsignedInt16 (lldb::SBError& error, lldb::offset_t offset);
63 GetUnsignedInt32 (lldb::SBError& error, lldb::offset_t offset);
66 GetUnsignedInt64 (lldb::SBError& error, lldb::offset_t offset);
69 GetSignedInt8 (lldb::SBError& error, lldb::offset_t offset);
72 GetSignedInt16 (lldb::SBError& error, lldb::offset_t offset);
[all …]
/external/lldb/source/Expression/
DDWARFExpression.cpp237 …ression::DWARFExpression(const DataExtractor& data, lldb::offset_t data_offset, lldb::offset_t dat… in DWARFExpression()
265 …ression::CopyOpcodeData (const DataExtractor& data, lldb::offset_t data_offset, lldb::offset_t dat… in CopyOpcodeData()
277 …pression::SetOpcodeData (const DataExtractor& data, lldb::offset_t data_offset, lldb::offset_t dat… in SetOpcodeData()
283 DWARFExpression::DumpLocation (Stream *s, lldb::offset_t offset, lldb::offset_t length, lldb::Descr… in DumpLocation()
287 const lldb::offset_t start_offset = offset; in DumpLocation()
288 const lldb::offset_t end_offset = offset + length; in DumpLocation()
291 const lldb::offset_t op_offset = offset; in DumpLocation()
668 lldb::offset_t offset = 0; in GetDescription()
682 lldb::offset_t location_length = m_data.GetU16(&offset); in GetDescription()
815 static offset_t
[all …]
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFLocationList.h22 lldb::offset_t offset);
26 lldb::offset_t* offset_ptr,
31 lldb::offset_t offset);
DDWARFDebugRanges.cpp31 lldb::offset_t offset = 0; in Extract()
85 DWARFDebugRanges::Extract(SymbolFileDWARF* dwarf2Data, lldb::offset_t *offset_ptr, RangeList &range… in Extract()
89 lldb::offset_t range_offset = *offset_ptr; in Extract()
135 DWARFDebugRanges::Dump(Stream &s, const DataExtractor& debug_ranges_data, lldb::offset_t *offset_pt… in Dump()
/external/lldb/source/Symbol/
DObjectFile.cpp33 lldb::offset_t file_offset, in FindPlugin()
34 lldb::offset_t file_size, in FindPlugin()
36 lldb::offset_t &data_offset) in FindPlugin()
188 lldb::offset_t file_offset, in GetModuleSpecifications()
189 lldb::offset_t file_size, in GetModuleSpecifications()
197 const lldb::offset_t actual_file_size = file.GetByteSize(); in GetModuleSpecifications()
214 lldb::offset_t data_offset, in GetModuleSpecifications()
215 lldb::offset_t file_offset, in GetModuleSpecifications()
216 lldb::offset_t file_size, in GetModuleSpecifications()
240 lldb::offset_t file_offset, in ObjectFile()
[all …]

12345