| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | DataExtractor.h | 206 lldb::offset_t PutToLog(Log *log, lldb::offset_t offset, 235 size_t ExtractBytes(lldb::offset_t offset, lldb::offset_t length, 314 const char *GetCStr(lldb::offset_t *offset_ptr, lldb::offset_t len) const; 337 const void *GetData(lldb::offset_t *offset_ptr, lldb::offset_t length) const { in GetData() 358 lldb::offset_t CopyData(lldb::offset_t offset, lldb::offset_t length, 396 lldb::offset_t CopyByteOrderedData(lldb::offset_t src_offset, 832 const uint8_t *PeekData(lldb::offset_t offset, lldb::offset_t length) const { in PeekData() 870 lldb::offset_t SetData(const void *bytes, lldb::offset_t length, 895 lldb::offset_t SetData(const DataExtractor &data, lldb::offset_t offset, 976 lldb::offset_t BytesLeft(lldb::offset_t offset) const { in BytesLeft() [all …]
|
| H A D | DataBufferHeap.h | 46 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);
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | DNBDataRef.h | 44 typedef uint32_t offset_t; typedef 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; 95 uint64_t GetPointer(offset_t *offset_ptr) const; 99 const char *PeekCStr(offset_t offset) const { in PeekCStr() 106 uint64_t Get_ULEB128(offset_t *offset_ptr) const; 107 int64_t Get_SLEB128(offset_t *offset_ptr) const; 108 void Skip_LEB128(offset_t *offset_ptr) const; [all …]
|
| H A D | DNBDataRef.cpp | 38 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() 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() 200 int64_t DNBDataRef::Get_SLEB128(offset_t *offset_ptr) const { in Get_SLEB128() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
| H A D | ObjectContainerBSDArchive.h | 32 lldb::offset_t data_offset, 34 lldb::offset_t offset, lldb::offset_t length, 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, 87 lldb::offset_t offset, 91 lldb::offset_t offset); 111 lldb::offset_t file_offset = 0; 114 lldb::offset_t file_size = 0; [all …]
|
| H A D | ObjectContainerBSDArchive.cpp | 61 const DataExtractor &data, lldb::offset_t offset, in ExtractFromThin() 128 lldb::offset_t 219 lldb::offset_t offset = 0; in ParseObjects() 394 lldb::offset_t file_offset, lldb::offset_t length) { in CreateInstance() 422 lldb::offset_t archive_data_offset = 0; in CreateInstance() 485 lldb::offset_t file_offset, lldb::offset_t size, ArchiveType archive_type) in ObjectContainerBSDArchive() 562 lldb::offset_t file_offset = 0; in GetObjectFile() 563 lldb::offset_t file_size = object->size; in GetObjectFile() 569 lldb::offset_t data_offset = 0; in GetObjectFile() 586 lldb::offset_t data_offset, lldb::offset_t file_offset, in GetModuleSpecifications() [all …]
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | DataExtractor.cpp | 50 offset_t offset = 0) { in ReadInt32() 57 offset_t offset = 0) { in ReadInt64() 223 lldb::offset_t DataExtractor::SetData(const void *bytes, offset_t length, in SetData() 659 size_t DataExtractor::ExtractBytes(offset_t offset, offset_t length, in ExtractBytes() 678 lldb::offset_t DataExtractor::CopyData(offset_t offset, offset_t length, in CopyData() 689 lldb::offset_t 690 DataExtractor::CopyByteOrderedData(offset_t src_offset, offset_t src_len, in CopyByteOrderedData() 814 const char *DataExtractor::GetCStr(offset_t *offset_ptr, offset_t len) const { in GetCStr() 902 lldb::offset_t DataExtractor::PutToLog(Log *log, offset_t start_offset, in PutToLog() 909 offset_t offset; in PutToLog() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/wasm/ |
| H A D | ObjectFileWasm.h | 34 lldb::offset_t data_offset, const FileSpec *file, 35 lldb::offset_t file_offset, lldb::offset_t length); 44 lldb::offset_t data_offset, 45 lldb::offset_t file_offset, 46 lldb::offset_t length, 115 lldb::offset_t data_offset, const FileSpec *file, 116 lldb::offset_t offset, lldb::offset_t length); 123 bool DecodeNextSection(lldb::offset_t *offset_ptr); 128 DataExtractor ReadImageData(lldb::offset_t offset, uint32_t size); 131 lldb::offset_t offset;
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBData.h | 46 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); 62 int8_t GetSignedInt8(lldb::SBError &error, lldb::offset_t offset); 64 int16_t GetSignedInt16(lldb::SBError &error, lldb::offset_t offset); 66 int32_t GetSignedInt32(lldb::SBError &error, lldb::offset_t offset); 68 int64_t GetSignedInt64(lldb::SBError &error, lldb::offset_t offset); [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/ |
| H A D | ObjectContainerUniversalMachO.h | 20 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 D | ObjectContainerUniversalMachO.cpp | 38 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() 190 lldb::offset_t data_offset = 0; in GetObjectFile() 201 lldb::offset_t data_offset, lldb::offset_t file_offset, in GetModuleSpecifications() 202 lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) { in GetModuleSpecifications() 213 const lldb::offset_t slice_file_offset = fat_arch.offset + file_offset; in GetModuleSpecifications()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PDB/ |
| H A D | ObjectFilePDB.h | 35 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 D | ObjectFilePDB.cpp | 91 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()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Breakpad/ |
| H A D | ObjectFileBreakpad.h | 31 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 D | ObjectFileBreakpad.cpp | 60 const ModuleSP &module_sp, DataBufferSP data_sp, offset_t data_offset, in CreateInstance() 61 const FileSpec *file, offset_t file_offset, offset_t length) { in CreateInstance() 93 const FileSpec &file, DataBufferSP &data_sp, offset_t data_offset, in GetModuleSpecifications() 94 offset_t file_offset, offset_t length, ModuleSpecList &specs) { in GetModuleSpecifications() 107 offset_t data_offset, in ObjectFileBreakpad() 108 const FileSpec *file, offset_t offset, in ObjectFileBreakpad() 109 offset_t length, ArchSpec arch, in ObjectFileBreakpad() 131 offset_t section_start; in CreateSections() 138 offset_t end_offset = end_ptr - m_data.GetDataStart(); in CreateSections()
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | Section.h | 111 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() 216 lldb::offset_t GetSectionData(void *dst, lldb::offset_t dst_len, 217 lldb::offset_t offset = 0); 232 lldb::offset_t GetSectionData(DataExtractor &data); [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/ |
| H A D | ObjectFileMachO.h | 26 lldb::offset_t data_offset, 28 lldb::offset_t length); 50 lldb::offset_t file_offset, lldb::offset_t length); 58 lldb::offset_t data_offset, 59 lldb::offset_t file_offset, 60 lldb::offset_t length, 146 lldb::offset_t *data_offset_ptr, 173 lldb::offset_t lc_offset, 212 lldb::offset_t offset); 214 lldb::offset_t offset, uint32_t cmd_idx, [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ELFHeader.cpp | 28 const lldb::offset_t saved_offset = *offset; in GetMaxU64() 36 lldb::offset_t saved_offset = *offset; in GetMaxU64() 50 const lldb::offset_t saved_offset = *offset; 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() 226 lldb::offset_t *offset) { in Parse() 323 lldb::offset_t *offset) { in Parse() 404 lldb::offset_t *offset) { in Parse() 414 lldb::offset_t *offset) { in Parse() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Minidump/ |
| H A D | ObjectFileMinidump.h | 42 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,
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | ObjectFile.h | 118 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 …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/JIT/ |
| H A D | ObjectFileJIT.h | 37 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,
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | DataExtractorTest.cpp | 21 lldb::offset_t offset; in TEST() 121 lldb::offset_t offset; in TEST() 154 lldb::offset_t offset; in TEST() 195 lldb::offset_t offset; in TEST() 230 lldb::offset_t offset; in TEST() 272 lldb::offset_t offset; in TEST() 291 lldb::offset_t offset; in TEST() 305 lldb::offset_t offset; in TEST() 329 lldb::offset_t offset; in TEST() 356 lldb::offset_t offset; in TEST() [all …]
|
| /llvm-project-15.0.7/lldb/include/lldb/ |
| H A D | lldb-private-interfaces.h | 41 lldb::offset_t data_offset, const FileSpec *file, lldb::offset_t offset, 42 lldb::offset_t length); 45 lldb::offset_t data_offset, lldb::offset_t file_offset, 46 lldb::offset_t length, ModuleSpecList &module_specs); 49 lldb::offset_t data_offset, 51 lldb::offset_t file_offset, 52 lldb::offset_t length);
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBData.i | 49 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); 73 GetSignedInt8 (lldb::SBError& error, lldb::offset_t offset); 76 GetSignedInt16 (lldb::SBError& error, lldb::offset_t offset); 79 GetSignedInt32 (lldb::SBError& error, lldb::offset_t offset); 82 GetSignedInt64 (lldb::SBError& error, lldb::offset_t offset); 85 GetString (lldb::SBError& error, lldb::offset_t offset); [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDataExtractor.h | 22 DWARFDataExtractor(const DWARFDataExtractor &data, lldb::offset_t offset, in DWARFDataExtractor() 23 lldb::offset_t length) in DWARFDataExtractor() 26 uint64_t GetDWARFInitialLength(lldb::offset_t *offset_ptr) const; 28 dw_offset_t GetDWARFOffset(lldb::offset_t *offset_ptr) const;
|