Lines Matching refs:offset_ptr
599 bool Symbol::Decode(const DataExtractor &data, lldb::offset_t *offset_ptr, in Decode() argument
602 if (!data.ValidOffsetForDataOfSize(*offset_ptr, 8)) in Decode()
604 m_uid = data.GetU32(offset_ptr); in Decode()
605 m_type_data = data.GetU16(offset_ptr); in Decode()
606 const uint16_t bitfields = data.GetU16(offset_ptr); in Decode()
618 if (!m_mangled.Decode(data, offset_ptr, strtab)) in Decode()
620 if (!data.ValidOffsetForDataOfSize(*offset_ptr, 20)) in Decode()
622 const bool is_addr = data.GetU8(offset_ptr) != 0; in Decode()
623 const uint64_t value = data.GetU64(offset_ptr); in Decode()
631 m_addr_range.SetByteSize(data.GetU64(offset_ptr)); in Decode()
632 m_flags = data.GetU32(offset_ptr); in Decode()