Lines Matching refs:ProvidedBA
812 const BinaryAttrs &ProvidedBA, in verifyBinaryAttrs() argument
864 if (ProvidedBA.InstallName != DylibBA.InstallName) { in verifyBinaryAttrs()
866 << ProvidedBA.InstallName << DylibBA.InstallName; in verifyBinaryAttrs()
870 if (ProvidedBA.CurrentVersion != DylibBA.CurrentVersion) { in verifyBinaryAttrs()
872 << ProvidedBA.CurrentVersion << DylibBA.CurrentVersion; in verifyBinaryAttrs()
876 if (ProvidedBA.CompatVersion != DylibBA.CompatVersion) { in verifyBinaryAttrs()
878 << ProvidedBA.CompatVersion << DylibBA.CompatVersion; in verifyBinaryAttrs()
882 if (ProvidedBA.AppExtensionSafe != DylibBA.AppExtensionSafe) { in verifyBinaryAttrs()
884 << (ProvidedBA.AppExtensionSafe ? "true" : "false") in verifyBinaryAttrs()
894 if (ProvidedBA.OSLibNotForSharedCache != DylibBA.OSLibNotForSharedCache) { in verifyBinaryAttrs()
896 << (ProvidedBA.OSLibNotForSharedCache ? "true" : "false") in verifyBinaryAttrs()
901 if (ProvidedBA.ParentUmbrella.empty() && !DylibBA.ParentUmbrella.empty()) { in verifyBinaryAttrs()
907 if (!ProvidedBA.ParentUmbrella.empty() && DylibBA.ParentUmbrella.empty()) { in verifyBinaryAttrs()
909 << "binary file" << ProvidedBA.ParentUmbrella; in verifyBinaryAttrs()
913 if ((!ProvidedBA.ParentUmbrella.empty()) && in verifyBinaryAttrs()
914 (ProvidedBA.ParentUmbrella != DylibBA.ParentUmbrella)) { in verifyBinaryAttrs()
916 << ProvidedBA.ParentUmbrella << DylibBA.ParentUmbrella; in verifyBinaryAttrs()
973 if (!ProvidedBA.InstallName.ends_with("_asan")) { in verifyBinaryAttrs()