Lines Matching refs:DataExtractor

123 DataExtractor::DataExtractor()  in DataExtractor()  function in DataExtractor
132 DataExtractor::DataExtractor(const void *data, offset_t length, in DataExtractor() function in DataExtractor
151 DataExtractor::DataExtractor(const DataBufferSP &data_sp, ByteOrder endian, in DataExtractor() function in DataExtractor
170 DataExtractor::DataExtractor(const DataExtractor &data, offset_t offset, in DataExtractor() function in DataExtractor
186 DataExtractor::DataExtractor(const DataExtractor &rhs) in DataExtractor() function in DataExtractor
198 const DataExtractor &DataExtractor::operator=(const DataExtractor &rhs) { in operator =()
209 DataExtractor::~DataExtractor() = default;
215 void DataExtractor::Clear() { in Clear()
227 size_t DataExtractor::GetSharedDataOffset() const { in GetSharedDataOffset()
250 lldb::offset_t DataExtractor::SetData(const void *bytes, offset_t length, in SetData()
276 lldb::offset_t DataExtractor::SetData(const DataExtractor &data, in SetData()
313 lldb::offset_t DataExtractor::SetData(const DataBufferSP &data_sp, in SetData()
351 uint8_t DataExtractor::GetU8(offset_t *offset_ptr) const { in GetU8()
366 void *DataExtractor::GetU8(offset_t *offset_ptr, void *dst, in GetU8()
385 uint16_t DataExtractor::GetU16(offset_t *offset_ptr) const { in GetU16()
397 uint16_t DataExtractor::GetU16_unchecked(offset_t *offset_ptr) const { in GetU16_unchecked()
407 uint32_t DataExtractor::GetU32_unchecked(offset_t *offset_ptr) const { in GetU32_unchecked()
417 uint64_t DataExtractor::GetU64_unchecked(offset_t *offset_ptr) const { in GetU64_unchecked()
435 void *DataExtractor::GetU16(offset_t *offset_ptr, void *void_dst, in GetU16()
465 uint32_t DataExtractor::GetU32(offset_t *offset_ptr) const { in GetU32()
486 void *DataExtractor::GetU32(offset_t *offset_ptr, void *void_dst, in GetU32()
516 uint64_t DataExtractor::GetU64(offset_t *offset_ptr) const { in GetU64()
536 void *DataExtractor::GetU64(offset_t *offset_ptr, void *void_dst, in GetU64()
560 uint32_t DataExtractor::GetMaxU32(offset_t *offset_ptr, in GetMaxU32()
566 uint64_t DataExtractor::GetMaxU64(offset_t *offset_ptr, in GetMaxU64()
590 uint64_t DataExtractor::GetMaxU64_unchecked(offset_t *offset_ptr, in GetMaxU64_unchecked()
610 int64_t DataExtractor::GetMaxS64(offset_t *offset_ptr, size_t byte_size) const { in GetMaxS64()
615 uint64_t DataExtractor::GetMaxU64Bitfield(offset_t *offset_ptr, size_t size, in GetMaxU64Bitfield()
633 int64_t DataExtractor::GetMaxS64Bitfield(offset_t *offset_ptr, size_t size, in GetMaxS64Bitfield()
652 float DataExtractor::GetFloat(offset_t *offset_ptr) const { in GetFloat()
670 double DataExtractor::GetDouble(offset_t *offset_ptr) const { in GetDouble()
688 long double DataExtractor::GetLongDouble(offset_t *offset_ptr) const { in GetLongDouble()
709 uint64_t DataExtractor::GetAddress(offset_t *offset_ptr) const { in GetAddress()
716 uint64_t DataExtractor::GetAddress_unchecked(offset_t *offset_ptr) const { in GetAddress_unchecked()
731 uint64_t DataExtractor::GetPointer(offset_t *offset_ptr) const { in GetPointer()
738 size_t DataExtractor::ExtractBytes(offset_t offset, offset_t length, in ExtractBytes()
757 lldb::offset_t DataExtractor::CopyData(offset_t offset, offset_t length, in CopyData()
769 DataExtractor::CopyByteOrderedData(offset_t src_offset, offset_t src_len, in CopyByteOrderedData()
865 const char *DataExtractor::GetCStr(offset_t *offset_ptr) const { in GetCStr()
898 const char *DataExtractor::GetCStr(offset_t *offset_ptr, offset_t len) const { in GetCStr()
918 const char *DataExtractor::PeekCStr(offset_t offset) const { in PeekCStr()
930 uint64_t DataExtractor::GetULEB128(offset_t *offset_ptr) const { in GetULEB128()
965 int64_t DataExtractor::GetSLEB128(offset_t *offset_ptr) const { in GetSLEB128()
1007 uint32_t DataExtractor::Skip_LEB128(offset_t *offset_ptr) const { in Skip_LEB128()
1035 lldb::offset_t DataExtractor::PutToLog(Log *log, offset_t start_offset, in PutToLog()
1038 DataExtractor::Type type, in PutToLog()
1096 size_t DataExtractor::Copy(DataExtractor &dest_data) const { in Copy()
1108 bool DataExtractor::Append(DataExtractor &rhs) { in Append()
1136 bool DataExtractor::Append(void *buf, offset_t length) { in Append()
1163 void DataExtractor::Checksum(llvm::SmallVectorImpl<uint8_t> &dest, in Checksum()