Lines Matching full:offset
117 float SBData::GetFloat(lldb::SBError &error, lldb::offset_t offset) { in GetFloat() argument
118 LLDB_INSTRUMENT_VA(this, error, offset); in GetFloat()
124 uint32_t old_offset = offset; in GetFloat()
125 value = m_opaque_sp->GetFloat(&offset); in GetFloat()
126 if (offset == old_offset) in GetFloat()
132 double SBData::GetDouble(lldb::SBError &error, lldb::offset_t offset) { in GetDouble() argument
133 LLDB_INSTRUMENT_VA(this, error, offset); in GetDouble()
139 uint32_t old_offset = offset; in GetDouble()
140 value = m_opaque_sp->GetDouble(&offset); in GetDouble()
141 if (offset == old_offset) in GetDouble()
147 long double SBData::GetLongDouble(lldb::SBError &error, lldb::offset_t offset) { in GetLongDouble() argument
148 LLDB_INSTRUMENT_VA(this, error, offset); in GetLongDouble()
154 uint32_t old_offset = offset; in GetLongDouble()
155 value = m_opaque_sp->GetLongDouble(&offset); in GetLongDouble()
156 if (offset == old_offset) in GetLongDouble()
162 lldb::addr_t SBData::GetAddress(lldb::SBError &error, lldb::offset_t offset) { in GetAddress() argument
163 LLDB_INSTRUMENT_VA(this, error, offset); in GetAddress()
169 uint32_t old_offset = offset; in GetAddress()
170 value = m_opaque_sp->GetAddress(&offset); in GetAddress()
171 if (offset == old_offset) in GetAddress()
177 uint8_t SBData::GetUnsignedInt8(lldb::SBError &error, lldb::offset_t offset) { in GetUnsignedInt8() argument
178 LLDB_INSTRUMENT_VA(this, error, offset); in GetUnsignedInt8()
184 uint32_t old_offset = offset; in GetUnsignedInt8()
185 value = m_opaque_sp->GetU8(&offset); in GetUnsignedInt8()
186 if (offset == old_offset) in GetUnsignedInt8()
192 uint16_t SBData::GetUnsignedInt16(lldb::SBError &error, lldb::offset_t offset) { in GetUnsignedInt16() argument
193 LLDB_INSTRUMENT_VA(this, error, offset); in GetUnsignedInt16()
199 uint32_t old_offset = offset; in GetUnsignedInt16()
200 value = m_opaque_sp->GetU16(&offset); in GetUnsignedInt16()
201 if (offset == old_offset) in GetUnsignedInt16()
207 uint32_t SBData::GetUnsignedInt32(lldb::SBError &error, lldb::offset_t offset) { in GetUnsignedInt32() argument
208 LLDB_INSTRUMENT_VA(this, error, offset); in GetUnsignedInt32()
214 uint32_t old_offset = offset; in GetUnsignedInt32()
215 value = m_opaque_sp->GetU32(&offset); in GetUnsignedInt32()
216 if (offset == old_offset) in GetUnsignedInt32()
222 uint64_t SBData::GetUnsignedInt64(lldb::SBError &error, lldb::offset_t offset) { in GetUnsignedInt64() argument
223 LLDB_INSTRUMENT_VA(this, error, offset); in GetUnsignedInt64()
229 uint32_t old_offset = offset; in GetUnsignedInt64()
230 value = m_opaque_sp->GetU64(&offset); in GetUnsignedInt64()
231 if (offset == old_offset) in GetUnsignedInt64()
237 int8_t SBData::GetSignedInt8(lldb::SBError &error, lldb::offset_t offset) { in GetSignedInt8() argument
238 LLDB_INSTRUMENT_VA(this, error, offset); in GetSignedInt8()
244 uint32_t old_offset = offset; in GetSignedInt8()
245 value = (int8_t)m_opaque_sp->GetMaxS64(&offset, 1); in GetSignedInt8()
246 if (offset == old_offset) in GetSignedInt8()
252 int16_t SBData::GetSignedInt16(lldb::SBError &error, lldb::offset_t offset) { in GetSignedInt16() argument
253 LLDB_INSTRUMENT_VA(this, error, offset); in GetSignedInt16()
259 uint32_t old_offset = offset; in GetSignedInt16()
260 value = (int16_t)m_opaque_sp->GetMaxS64(&offset, 2); in GetSignedInt16()
261 if (offset == old_offset) in GetSignedInt16()
267 int32_t SBData::GetSignedInt32(lldb::SBError &error, lldb::offset_t offset) { in GetSignedInt32() argument
268 LLDB_INSTRUMENT_VA(this, error, offset); in GetSignedInt32()
274 uint32_t old_offset = offset; in GetSignedInt32()
275 value = (int32_t)m_opaque_sp->GetMaxS64(&offset, 4); in GetSignedInt32()
276 if (offset == old_offset) in GetSignedInt32()
282 int64_t SBData::GetSignedInt64(lldb::SBError &error, lldb::offset_t offset) { in GetSignedInt64() argument
283 LLDB_INSTRUMENT_VA(this, error, offset); in GetSignedInt64()
289 uint32_t old_offset = offset; in GetSignedInt64()
290 value = (int64_t)m_opaque_sp->GetMaxS64(&offset, 8); in GetSignedInt64()
291 if (offset == old_offset) in GetSignedInt64()
297 const char *SBData::GetString(lldb::SBError &error, lldb::offset_t offset) { in GetString() argument
298 LLDB_INSTRUMENT_VA(this, error, offset); in GetString()
305 lldb::offset_t old_offset = offset; in GetString()
306 const char *value = m_opaque_sp->GetCStr(&offset); in GetString()
307 if (offset == old_offset || value == nullptr) { in GetString()
330 size_t SBData::ReadRawData(lldb::SBError &error, lldb::offset_t offset, in ReadRawData() argument
332 LLDB_INSTRUMENT_VA(this, error, offset, buf, size); in ReadRawData()
338 uint32_t old_offset = offset; in ReadRawData()
339 ok = m_opaque_sp->GetU8(&offset, buf, size); in ReadRawData()
340 if ((offset == old_offset) || (ok == nullptr)) in ReadRawData()