Lines Matching refs:Decode
510 bool ManualDWARFIndex::IndexSet::Decode(const DataExtractor &data, in Decode() function in ManualDWARFIndex::IndexSet
514 if (!strtab.Decode(data, offset_ptr)) in Decode()
532 if (!function_basenames.Decode(data, offset_ptr, strtab)) in Decode()
536 if (!function_fullnames.Decode(data, offset_ptr, strtab)) in Decode()
540 if (!function_methods.Decode(data, offset_ptr, strtab)) in Decode()
544 if (!function_selectors.Decode(data, offset_ptr, strtab)) in Decode()
548 if (!objc_class_selectors.Decode(data, offset_ptr, strtab)) in Decode()
552 if (!globals.Decode(data, offset_ptr, strtab)) in Decode()
556 if (!types.Decode(data, offset_ptr, strtab)) in Decode()
560 if (!namespaces.Decode(data, offset_ptr, strtab)) in Decode()
626 bool ManualDWARFIndex::Decode(const DataExtractor &data, in Decode() function in ManualDWARFIndex
631 if (!signature.Decode(data, offset_ptr)) in Decode()
638 if (!set.Decode(data, offset_ptr)) in Decode()
682 const bool result = Decode(data, &offset, signature_mismatch); in LoadFromCache()