Lines Matching defs:offset_ptr
1213 bool DecodeCStrMap(const DataExtractor &data, lldb::offset_t *offset_ptr,
1216 llvm::StringRef identifier((const char *)data.GetData(offset_ptr, 4), 4);
1219 const uint32_t count = data.GetU32(offset_ptr);
1223 llvm::StringRef str(strtab.Get(data.GetU32(offset_ptr)));
1224 uint32_t value = data.GetU32(offset_ptr);
1303 bool Symtab::Decode(const DataExtractor &data, lldb::offset_t *offset_ptr,
1310 if (!signature.Decode(data, offset_ptr))
1317 if (!strtab.Decode(data, offset_ptr))
1321 llvm::StringRef identifier((const char *)data.GetData(offset_ptr, 4), 4);
1324 const uint32_t version = data.GetU32(offset_ptr);
1327 const uint32_t num_symbols = data.GetU32(offset_ptr);
1333 if (!m_symbols[i].Decode(data, offset_ptr, sections, strtab))
1340 const uint8_t num_cstr_maps = data.GetU8(offset_ptr);
1342 uint8_t type = data.GetU8(offset_ptr);
1345 if (!DecodeCStrMap(data, offset_ptr, strtab, cstr_map))