Home
last modified time | relevance | path

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

12345678

/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DDataExtractor.h87 DataExtractor(const void *data, lldb::offset_t data_length,
134 DataExtractor(const DataExtractor &data, lldb::offset_t offset,
135 lldb::offset_t length, uint32_t target_byte_size = 1);
206 lldb::offset_t PutToLog(Log *log, lldb::offset_t offset,
207 lldb::offset_t length, uint64_t base_addr,
235 size_t ExtractBytes(lldb::offset_t offset, lldb::offset_t length,
254 uint64_t GetAddress(lldb::offset_t *offset_ptr) const;
256 uint64_t GetAddress_unchecked(lldb::offset_t *offset_ptr) const;
291 const char *GetCStr(lldb::offset_t *offset_ptr) const;
314 const char *GetCStr(lldb::offset_t *offset_ptr, lldb::offset_t len) const;
[all …]
H A DDataBufferHeap.h46 DataBufferHeap(lldb::offset_t n, uint8_t ch);
55 DataBufferHeap(const void *src, lldb::offset_t src_len);
73 lldb::offset_t GetByteSize() const override;
88 lldb::offset_t SetByteSize(lldb::offset_t byte_size);
99 void CopyData(const void *src, lldb::offset_t src_len);
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A DDNBDataRef.h44 typedef uint32_t offset_t; typedef
62 bool ValidOffset(offset_t offset) const { return BytesLeft(offset) > 0; } in ValidOffset()
63 bool ValidOffsetForDataOfSize(offset_t offset, uint32_t num_bytes) const { in ValidOffsetForDataOfSize()
89 uint8_t Get8(offset_t *offset_ptr) const;
90 uint16_t Get16(offset_t *offset_ptr) const;
91 uint32_t Get32(offset_t *offset_ptr) const;
92 uint64_t Get64(offset_t *offset_ptr) const;
93 uint32_t GetMax32(offset_t *offset_ptr, uint32_t byte_size) const;
94 uint64_t GetMax64(offset_t *offset_ptr, uint32_t byte_size) const;
95 uint64_t GetPointer(offset_t *offset_ptr) const;
[all …]
H A DDNBDataRef.cpp38 uint8_t DNBDataRef::Get8(offset_t *offset_ptr) const { in Get8()
48 uint16_t DNBDataRef::Get16(offset_t *offset_ptr) const { in Get16()
64 uint32_t DNBDataRef::Get32(offset_t *offset_ptr) const { in Get32()
79 uint64_t DNBDataRef::Get64(offset_t *offset_ptr) const { in Get64()
97 uint32_t DNBDataRef::GetMax32(offset_t *offset_ptr, uint32_t byte_size) const { in GetMax32()
119 uint64_t DNBDataRef::GetMax64(offset_t *offset_ptr, uint32_t size) const { in GetMax64()
144 uint64_t DNBDataRef::GetPointer(offset_t *offset_ptr) const { in GetPointer()
150 const char *DNBDataRef::GetCStr(offset_t *offset_ptr, in GetCStr()
166 const uint8_t *DNBDataRef::GetData(offset_t *offset_ptr, in GetData()
177 uint64_t DNBDataRef::Get_ULEB128(offset_t *offset_ptr) const { in Get_ULEB128()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.h32 lldb::offset_t data_offset,
34 lldb::offset_t offset, lldb::offset_t length,
52 lldb::offset_t data_offset, const lldb_private::FileSpec *file,
53 lldb::offset_t offset, lldb::offset_t length);
57 lldb::offset_t data_offset,
58 lldb::offset_t file_offset,
59 lldb::offset_t length,
84 lldb::offset_t ExtractFromThin(const lldb_private::DataExtractor &data,
85 lldb::offset_t offset,
88 lldb::offset_t Extract(const lldb_private::DataExtractor &data,
[all …]
H A DObjectContainerBSDArchive.cpp60 lldb::offset_t ObjectContainerBSDArchive::Object::ExtractFromThin( in ExtractFromThin()
61 const DataExtractor &data, lldb::offset_t offset, in ExtractFromThin()
128 lldb::offset_t
130 lldb::offset_t offset) { in Extract()
208 lldb::offset_t file_offset, in Archive()
219 lldb::offset_t offset = 0; in ParseObjects()
312 const llvm::sys::TimePoint<> &time, lldb::offset_t file_offset) { in FindCachedArchive()
352 const llvm::sys::TimePoint<> &time, lldb::offset_t file_offset, in ParseAndCacheArchiveForFile()
393 lldb::offset_t data_offset, const FileSpec *file, in CreateInstance()
394 lldb::offset_t file_offset, lldb::offset_t length) { in CreateInstance()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DDataExtractor.cpp43 static inline uint16_t ReadInt16(const unsigned char *ptr, offset_t offset) { in ReadInt16()
50 offset_t offset = 0) { in ReadInt32()
57 offset_t offset = 0) { in ReadInt64()
70 offset_t offset) { in ReadSwapInt16()
77 offset_t offset) { in ReadSwapInt32()
84 offset_t offset) { in ReadSwapInt64()
128 DataExtractor::DataExtractor(const void *data, offset_t length, in DataExtractor()
156 DataExtractor::DataExtractor(const DataExtractor &data, offset_t offset, in DataExtractor()
157 offset_t length, uint32_t target_byte_size /*=1*/) in DataExtractor()
162 offset_t bytes_available = data.GetByteSize() - offset; in DataExtractor()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.h35 lldb::offset_t data_offset, const FileSpec *file,
36 lldb::offset_t file_offset, lldb::offset_t length);
45 lldb::offset_t data_offset,
46 lldb::offset_t file_offset,
47 lldb::offset_t length,
116 lldb::offset_t data_offset, const FileSpec *file,
117 lldb::offset_t offset, lldb::offset_t length);
124 bool DecodeNextSection(lldb::offset_t *offset_ptr);
129 DataExtractor ReadImageData(lldb::offset_t offset, uint32_t size);
132 lldb::offset_t offset;
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBData.h46 float GetFloat(lldb::SBError &error, lldb::offset_t offset);
48 double GetDouble(lldb::SBError &error, lldb::offset_t offset);
50 long double GetLongDouble(lldb::SBError &error, lldb::offset_t offset);
52 lldb::addr_t GetAddress(lldb::SBError &error, lldb::offset_t offset);
54 uint8_t GetUnsignedInt8(lldb::SBError &error, lldb::offset_t offset);
56 uint16_t GetUnsignedInt16(lldb::SBError &error, lldb::offset_t offset);
58 uint32_t GetUnsignedInt32(lldb::SBError &error, lldb::offset_t offset);
60 uint64_t GetUnsignedInt64(lldb::SBError &error, lldb::offset_t offset);
62 int8_t GetSignedInt8(lldb::SBError &error, lldb::offset_t offset);
64 int16_t GetSignedInt16(lldb::SBError &error, lldb::offset_t offset);
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
H A DObjectContainerUniversalMachO.h20 lldb::offset_t data_offset,
22 lldb::offset_t offset, lldb::offset_t length);
39 lldb::offset_t data_offset, const lldb_private::FileSpec *file,
40 lldb::offset_t offset, lldb::offset_t length);
44 lldb::offset_t data_offset,
45 lldb::offset_t file_offset,
46 lldb::offset_t length,
H A DObjectContainerUniversalMachO.cpp38 lldb::offset_t data_offset, const FileSpec *file, in CreateInstance()
39 lldb::offset_t file_offset, lldb::offset_t length) { in CreateInstance()
58 lldb::offset_t offset = 0; in MagicBytesMatch()
65 lldb::offset_t data_offset, const FileSpec *file, in ObjectContainerUniversalMachO()
66 lldb::offset_t file_offset, lldb::offset_t length) in ObjectContainerUniversalMachO()
90 lldb::offset_t offset = 0; in ParseHeader()
167 lldb::offset_t data_offset = 0; in GetObjectFile()
178 lldb::offset_t data_offset, lldb::offset_t file_offset, in GetModuleSpecifications()
179 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications()
190 const lldb::offset_t slice_file_offset = fat_arch.offset + file_offset; in GetModuleSpecifications()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectContainer/Mach-O-Fileset/
H A DObjectContainerMachOFileset.h22 lldb::offset_t data_offset,
24 lldb::offset_t offset, lldb::offset_t length);
44 lldb::offset_t data_offset, const lldb_private::FileSpec *file,
45 lldb::offset_t offset, lldb::offset_t length);
53 lldb::offset_t data_offset,
54 lldb::offset_t file_offset,
55 lldb::offset_t length,
84 lldb::offset_t file_offset,
H A DObjectContainerMachOFileset.cpp38 lldb::offset_t data_offset, const lldb_private::FileSpec *file, in ObjectContainerMachOFileset()
39 lldb::offset_t offset, lldb::offset_t length) in ObjectContainerMachOFileset()
52 lldb::offset_t data_offset, const FileSpec *file, in CreateInstance()
53 lldb::offset_t file_offset, lldb::offset_t length) { in CreateInstance()
100 lldb::offset_t offset = 0; in ParseMachOHeader()
140 lldb::offset_t offset = MachHeaderSizeFromMagic(header.magic); in ParseFileset()
141 lldb::offset_t slide = 0; in ParseFileset()
143 const lldb::offset_t load_cmd_offset = offset; in ParseFileset()
161 lldb::offset_t entry_id_offset = load_cmd_offset + entry.entry_id; in ParseFileset()
175 lldb::offset_t file_offset, std::vector<Entry> &entries) { in ParseHeader()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.h35 lldb::offset_t data_offset, const FileSpec *file,
36 lldb::offset_t file_offset, lldb::offset_t length);
45 lldb::offset_t data_offset,
46 lldb::offset_t file_offset,
47 lldb::offset_t length,
93 lldb::offset_t data_offset, const FileSpec *file,
94 lldb::offset_t offset, lldb::offset_t length);
H A DObjectFilePDB.cpp91 offset_t data_offset, const FileSpec *file, in CreateInstance()
92 offset_t file_offset, offset_t length) { in CreateInstance()
108 const FileSpec &file, DataBufferSP &data_sp, offset_t data_offset, in GetModuleSpecifications()
109 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications()
157 offset_t data_offset, const FileSpec *file, in ObjectFilePDB()
158 offset_t offset, offset_t length) in ObjectFilePDB()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.h31 lldb::offset_t data_offset, const FileSpec *file,
32 lldb::offset_t file_offset, lldb::offset_t length);
41 lldb::offset_t data_offset,
42 lldb::offset_t file_offset,
43 lldb::offset_t length,
97 lldb::DataBufferSP &data_sp, lldb::offset_t data_offset,
98 const FileSpec *file, lldb::offset_t offset,
99 lldb::offset_t length, ArchSpec arch, UUID uuid);
H A DObjectFileBreakpad.cpp61 const ModuleSP &module_sp, DataBufferSP data_sp, offset_t data_offset, in CreateInstance()
62 const FileSpec *file, offset_t file_offset, offset_t length) { in CreateInstance()
94 const FileSpec &file, DataBufferSP &data_sp, offset_t data_offset, in GetModuleSpecifications()
95 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications()
108 offset_t data_offset, in ObjectFileBreakpad()
109 const FileSpec *file, offset_t offset, in ObjectFileBreakpad()
110 offset_t length, ArchSpec arch, in ObjectFileBreakpad()
132 offset_t section_start; in CreateSections()
139 offset_t end_offset = end_ptr - m_data.GetDataStart(); in CreateSections()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DSection.h111 lldb::addr_t vm_size, lldb::offset_t file_offset,
112 lldb::offset_t file_size, uint32_t log2align, uint32_t flags,
122 lldb::addr_t vm_size, lldb::offset_t file_offset,
123 lldb::offset_t file_size, uint32_t log2align, uint32_t flags,
146 lldb::offset_t GetFileOffset() const { return m_file_offset; } in GetFileOffset()
148 void SetFileOffset(lldb::offset_t file_offset) { in SetFileOffset()
152 lldb::offset_t GetFileSize() const { return m_file_size; } in GetFileSize()
154 void SetFileSize(lldb::offset_t file_size) { m_file_size = file_size; } in SetFileSize()
216 lldb::offset_t GetSectionData(void *dst, lldb::offset_t dst_len,
217 lldb::offset_t offset = 0);
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.h27 lldb::offset_t data_offset,
28 const lldb_private::FileSpec *file, lldb::offset_t offset,
29 lldb::offset_t length);
50 lldb::offset_t data_offset, const lldb_private::FileSpec *file,
51 lldb::offset_t file_offset, lldb::offset_t length);
59 lldb::offset_t data_offset,
60 lldb::offset_t file_offset,
61 lldb::offset_t length,
149 lldb::offset_t *data_offset_ptr,
161 lldb::offset_t lc_offset); // Offset to the first load command
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.cpp26 lldb::offset_t *offset, uint64_t *value, in GetMaxU64()
28 const lldb::offset_t saved_offset = *offset; in GetMaxU64()
34 lldb::offset_t *offset, uint64_t *value, in GetMaxU64()
36 lldb::offset_t saved_offset = *offset; in GetMaxU64()
48 lldb::offset_t *offset, int64_t *value, in GetMaxS64()
50 const lldb::offset_t saved_offset = *offset; in GetMaxS64()
56 lldb::offset_t *offset, int64_t *value, in GetMaxS64()
58 lldb::offset_t saved_offset = *offset; in GetMaxS64()
99 lldb::offset_t offset = 0; in ParseHeaderExtension()
115 lldb::offset_t *offset) { in Parse()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/Minidump/
H A DObjectFileMinidump.h42 lldb::offset_t data_offset, const lldb_private::FileSpec *file,
43 lldb::offset_t offset, lldb::offset_t length);
51 lldb::offset_t data_offset,
52 lldb::offset_t file_offset,
53 lldb::offset_t length,
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DObjectFile.h118 lldb::offset_t file_offset, lldb::offset_t length,
119 lldb::DataBufferSP data_sp, lldb::offset_t data_offset);
165 lldb::offset_t file_offset, lldb::offset_t file_size,
166 lldb::DataBufferSP &data_sp, lldb::offset_t &data_offset);
189 GetModuleSpecifications(const FileSpec &file, lldb::offset_t file_offset,
190 lldb::offset_t file_size, ModuleSpecList &specs,
195 lldb::offset_t data_offset,
196 lldb::offset_t file_offset,
197 lldb::offset_t file_size,
657 size_t GetData(lldb::offset_t offset, size_t length,
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.h37 lldb::offset_t data_offset, const lldb_private::FileSpec *file,
38 lldb::offset_t file_offset, lldb::offset_t length);
46 lldb::offset_t data_offset,
47 lldb::offset_t file_offset,
48 lldb::offset_t length,
85 lldb::offset_t section_offset, void *dst,
/openbsd-src/gnu/llvm/lldb/include/lldb/
H A Dlldb-private-interfaces.h41 lldb::offset_t data_offset, const FileSpec *file, lldb::offset_t offset,
42 lldb::offset_t length);
48 lldb::offset_t data_offset, lldb::offset_t file_offset,
49 lldb::offset_t length, ModuleSpecList &module_specs);
52 lldb::offset_t data_offset,
54 lldb::offset_t file_offset,
55 lldb::offset_t length);
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBData.i49 GetFloat (lldb::SBError& error, lldb::offset_t offset);
52 GetDouble (lldb::SBError& error, lldb::offset_t offset);
55 GetLongDouble (lldb::SBError& error, lldb::offset_t offset);
58 GetAddress (lldb::SBError& error, lldb::offset_t offset);
61 GetUnsignedInt8 (lldb::SBError& error, lldb::offset_t offset);
64 GetUnsignedInt16 (lldb::SBError& error, lldb::offset_t offset);
67 GetUnsignedInt32 (lldb::SBError& error, lldb::offset_t offset);
70 GetUnsignedInt64 (lldb::SBError& error, lldb::offset_t offset);
73 GetSignedInt8 (lldb::SBError& error, lldb::offset_t offset);
76 GetSignedInt16 (lldb::SBError& error, lldb::offset_t offset);
[all …]

12345678