Lines Matching defs:version
612 CheckFileVersion(header->version, filename);
637 if (ContainsLiteralArrayInHeader(header->version)) {
671 if (file_version == version) {
675 LOG(LOG_LEVEL, PANDAFILE) << "Unable to open file '" << filename << "' with abc file version "
677 << ". Minimum supported abc file version on the current system image is " << VersionToString(minVersion)
678 << ". Please upgrade the sdk tools to generate supported version of abc files "
679 << "or execute the abc file on former version of system image";
680 } else if (file_version > version) {
681 LOG(LOG_LEVEL, PANDAFILE) << "Unable to open file '" << filename << "' with abc file version "
683 << ". Maximum supported abc file version on the current system image is " << VersionToString(version)
684 << ". Please upgrade the system image or use former version of SDK tools to generate abc files";
686 LOG(LOG_LEVEL, PANDAFILE) << "Unable to open file '" << filename << "' with abc file version "
687 << VersionToString(file_version) << ". Current system image version is "
688 << VersionToString(version) << ", while abc file version is " << VersionToString(file_version)
689 << ". The version "<< VersionToString(file_version)
690 << " is not a compatible version, can't run on system image of version " << VersionToString(version)
692 << "and make the version of sdk tools and system image consistent";
780 bool ContainsLiteralArrayInHeader(const std::array<uint8_t, File::VERSION_SIZE> &version)
782 return panda::panda_file::IsVersionLessOrEqual(version, LAST_CONTAINS_LITERAL_IN_HEADER_VERSION);