Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/pm/
DSigningDetails.java578 public boolean hasCommonSignerWithCapability(@NonNull SigningDetails otherDetails, in hasCommonSignerWithCapability() argument
580 if (this == UNKNOWN || otherDetails == UNKNOWN) { in hasCommonSignerWithCapability()
585 if (mSignatures.length > 1 || otherDetails.mSignatures.length > 1) { in hasCommonSignerWithCapability()
586 return signaturesMatchExactly(otherDetails); in hasCommonSignerWithCapability()
591 if (otherDetails.hasPastSigningCertificates()) { in hasCommonSignerWithCapability()
592 otherSignatures.addAll(Arrays.asList(otherDetails.mPastSigningCertificates)); in hasCommonSignerWithCapability()
594 otherSignatures.addAll(Arrays.asList(otherDetails.mSignatures)); in hasCommonSignerWithCapability()
DPackageParser.java6385 public boolean hasCommonSignerWithCapability(SigningDetails otherDetails, in hasCommonSignerWithCapability() argument
6387 if (this == UNKNOWN || otherDetails == UNKNOWN) { in hasCommonSignerWithCapability()
6392 if (signatures.length > 1 || otherDetails.signatures.length > 1) { in hasCommonSignerWithCapability()
6393 return signaturesMatchExactly(otherDetails); in hasCommonSignerWithCapability()
6398 if (otherDetails.hasPastSigningCertificates()) { in hasCommonSignerWithCapability()
6399 otherSignatures.addAll(Arrays.asList(otherDetails.pastSigningCertificates)); in hasCommonSignerWithCapability()
6401 otherSignatures.addAll(Arrays.asList(otherDetails.signatures)); in hasCommonSignerWithCapability()