Lines Matching refs:Decode
530 bool ManualDWARFIndex::IndexSet::Decode(const DataExtractor &data, in Decode() function in ManualDWARFIndex::IndexSet
534 if (!strtab.Decode(data, offset_ptr)) in Decode()
552 if (!function_basenames.Decode(data, offset_ptr, strtab)) in Decode()
556 if (!function_fullnames.Decode(data, offset_ptr, strtab)) in Decode()
560 if (!function_methods.Decode(data, offset_ptr, strtab)) in Decode()
564 if (!function_selectors.Decode(data, offset_ptr, strtab)) in Decode()
568 if (!objc_class_selectors.Decode(data, offset_ptr, strtab)) in Decode()
572 if (!globals.Decode(data, offset_ptr, strtab)) in Decode()
576 if (!types.Decode(data, offset_ptr, strtab)) in Decode()
580 if (!namespaces.Decode(data, offset_ptr, strtab)) in Decode()
646 bool ManualDWARFIndex::Decode(const DataExtractor &data, in Decode() function in ManualDWARFIndex
651 if (!signature.Decode(data, offset_ptr)) in Decode()
658 if (!set.Decode(data, offset_ptr)) in Decode()
702 const bool result = Decode(data, &offset, signature_mismatch); in LoadFromCache()