Lines Matching refs:Decode
545 bool ManualDWARFIndex::IndexSet::Decode(const DataExtractor &data, in Decode() function in ManualDWARFIndex::IndexSet
549 if (!strtab.Decode(data, offset_ptr)) in Decode()
567 if (!function_basenames.Decode(data, offset_ptr, strtab)) in Decode()
571 if (!function_fullnames.Decode(data, offset_ptr, strtab)) in Decode()
575 if (!function_methods.Decode(data, offset_ptr, strtab)) in Decode()
579 if (!function_selectors.Decode(data, offset_ptr, strtab)) in Decode()
583 if (!objc_class_selectors.Decode(data, offset_ptr, strtab)) in Decode()
587 if (!globals.Decode(data, offset_ptr, strtab)) in Decode()
591 if (!types.Decode(data, offset_ptr, strtab)) in Decode()
595 if (!namespaces.Decode(data, offset_ptr, strtab)) in Decode()
661 bool ManualDWARFIndex::Decode(const DataExtractor &data, in Decode() function in ManualDWARFIndex
666 if (!signature.Decode(data, offset_ptr)) in Decode()
673 if (!set.Decode(data, offset_ptr)) in Decode()
717 const bool result = Decode(data, &offset, signature_mismatch); in LoadFromCache()