Lines Matching refs:offset_ptr
1201 bool DecodeCStrMap(const DataExtractor &data, lldb::offset_t *offset_ptr, in DecodeCStrMap() argument
1204 llvm::StringRef identifier((const char *)data.GetData(offset_ptr, 4), 4); in DecodeCStrMap()
1207 const uint32_t count = data.GetU32(offset_ptr); in DecodeCStrMap()
1211 llvm::StringRef str(strtab.Get(data.GetU32(offset_ptr))); in DecodeCStrMap()
1212 uint32_t value = data.GetU32(offset_ptr); in DecodeCStrMap()
1291 bool Symtab::Decode(const DataExtractor &data, lldb::offset_t *offset_ptr, in Decode() argument
1298 if (!signature.Decode(data, offset_ptr)) in Decode()
1305 if (!strtab.Decode(data, offset_ptr)) in Decode()
1309 llvm::StringRef identifier((const char *)data.GetData(offset_ptr, 4), 4); in Decode()
1312 const uint32_t version = data.GetU32(offset_ptr); in Decode()
1315 const uint32_t num_symbols = data.GetU32(offset_ptr); in Decode()
1321 if (!m_symbols[i].Decode(data, offset_ptr, sections, strtab)) in Decode()
1328 const uint8_t num_cstr_maps = data.GetU8(offset_ptr); in Decode()
1330 uint8_t type = data.GetU8(offset_ptr); in Decode()
1333 if (!DecodeCStrMap(data, offset_ptr, strtab, cstr_map)) in Decode()