Home
last modified time | relevance | path

Searched refs:otherSignatures (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/content/pm/
DSigningDetails.java590 Set<Signature> otherSignatures = new ArraySet<>(); in hasCommonSignerWithCapability() local
592 otherSignatures.addAll(Arrays.asList(otherDetails.mPastSigningCertificates)); in hasCommonSignerWithCapability()
594 otherSignatures.addAll(Arrays.asList(otherDetails.mSignatures)); in hasCommonSignerWithCapability()
598 if (otherSignatures.contains(mSignatures[0])) { in hasCommonSignerWithCapability()
605 if (otherSignatures.contains(mPastSigningCertificates[i])) { in hasCommonSignerWithCapability()
DPackageParser.java6397 Set<Signature> otherSignatures = new ArraySet<>(); in hasCommonSignerWithCapability() local
6399 otherSignatures.addAll(Arrays.asList(otherDetails.pastSigningCertificates)); in hasCommonSignerWithCapability()
6401 otherSignatures.addAll(Arrays.asList(otherDetails.signatures)); in hasCommonSignerWithCapability()
6405 if (otherSignatures.contains(signatures[0])) { in hasCommonSignerWithCapability()
6412 if (otherSignatures.contains(pastSigningCertificates[i])) { in hasCommonSignerWithCapability()