Lines Matching refs:status

745   ProfileLoadStatus status = LoadInternal(fd, &error);  in MergeWith()  local
746 if (status == ProfileLoadStatus::kSuccess) { in MergeWith()
780 ProfileLoadStatus status = LoadInternal(fd, &error); in Load() local
781 if (status == ProfileLoadStatus::kSuccess) { in Load()
786 ((status == ProfileLoadStatus::kBadMagic) || in Load()
787 (status == ProfileLoadStatus::kVersionMismatch) || in Load()
788 (status == ProfileLoadStatus::kBadData))) { in Load()
1282 ProfileLoadStatus status = LoadInternal(fd, &error, merge_classes, filter_fn); in Load() local
1284 if (status == ProfileLoadStatus::kSuccess) { in Load()
1470 ProfileLoadStatus status = source.Read( in ReadSectionData() local
1472 if (status != ProfileLoadStatus::kSuccess) { in ReadSectionData()
1473 return status; in ReadSectionData()
1492 ProfileLoadStatus status = ReadSectionData(source, section_info, &buffer, error); in ReadDexFilesSection() local
1493 if (status != ProfileLoadStatus::kSuccess) { in ReadDexFilesSection()
1494 return status; in ReadDexFilesSection()
1558 ProfileLoadStatus status = ReadSectionData(source, section_info, &buffer, error); in ReadExtraDescriptorsSection() local
1559 if (status != ProfileLoadStatus::kSuccess) { in ReadExtraDescriptorsSection()
1560 return status; in ReadExtraDescriptorsSection()
1610 ProfileLoadStatus status = ReadSectionData(source, section_info, &buffer, error); in ReadClassesSection() local
1611 if (status != ProfileLoadStatus::kSuccess) { in ReadClassesSection()
1612 return status; in ReadClassesSection()
1627 status = DexFileData::SkipClasses(buffer, error); in ReadClassesSection()
1629 status = info_[profile_index]->ReadClasses(buffer, extra_descriptors_remap, error); in ReadClassesSection()
1631 if (status != ProfileLoadStatus::kSuccess) { in ReadClassesSection()
1632 return status; in ReadClassesSection()
1646 ProfileLoadStatus status = ReadSectionData(source, section_info, &buffer, error); in ReadMethodsSection() local
1647 if (status != ProfileLoadStatus::kSuccess) { in ReadMethodsSection()
1648 return status; in ReadMethodsSection()
1663 status = DexFileData::SkipMethods(buffer, error); in ReadMethodsSection()
1665 status = info_[profile_index]->ReadMethods(buffer, extra_descriptors_remap, error); in ReadMethodsSection()
1667 if (status != ProfileLoadStatus::kSuccess) { in ReadMethodsSection()
1668 return status; in ReadMethodsSection()
1684 ProfileLoadStatus status = OpenSource(fd, &source, error); in LoadInternal() local
1685 if (status != ProfileLoadStatus::kSuccess) { in LoadInternal()
1686 return status; in LoadInternal()
1698 status = source->Read(&header, sizeof(FileHeader), "ReadProfileHeader", error); in LoadInternal()
1699 if (status != ProfileLoadStatus::kSuccess) { in LoadInternal()
1700 return status; in LoadInternal()
1722 status = source->Read( in LoadInternal()
1724 if (status != ProfileLoadStatus::kSuccess) { in LoadInternal()
1725 return status; in LoadInternal()
1760 status = ReadDexFilesSection( in LoadInternal()
1762 if (status != ProfileLoadStatus::kSuccess) { in LoadInternal()
1764 return status; in LoadInternal()
1771 DCHECK(status == ProfileLoadStatus::kSuccess); in LoadInternal()
1775 status = ProfileLoadStatus::kBadData; in LoadInternal()
1778 status = ReadExtraDescriptorsSection( in LoadInternal()
1784 status = ReadClassesSection( in LoadInternal()
1791 status = ReadMethodsSection( in LoadInternal()
1800 if (status != ProfileLoadStatus::kSuccess) { in LoadInternal()
1802 return status; in LoadInternal()