Home
last modified time | relevance | path

Searched refs:myhash (Results 1 – 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/x509/
DGeneralSubtree.java54 private int myhash = -1; field in GeneralSubtree
172 if (myhash == -1) { in hashCode()
173 myhash = 17; in hashCode()
175 myhash = 37 * myhash + name.hashCode(); in hashCode()
178 myhash = 37 * myhash + minimum; in hashCode()
181 myhash = 37 * myhash + maximum; in hashCode()
184 return myhash; in hashCode()
DEDIPartyName.java54 private int myhash = -1; field in EDIPartyName
199 if (myhash == -1) { in hashCode()
200 myhash = 37 + (party == null ? 1 : party.hashCode()); in hashCode()
202 myhash = 37 * myhash + assigner.hashCode(); in hashCode()
205 return myhash; in hashCode()
DOtherName.java58 private int myhash = -1; field in OtherName
209 if (myhash == -1) { in hashCode()
210 myhash = 37 + oid.hashCode(); in hashCode()
212 myhash = 37 * myhash + nameValue[i]; in hashCode()
215 return myhash; in hashCode()
DAccessDescription.java38 private int myhash = -1; field in AccessDescription
83 if (myhash == -1) { in hashCode()
84 myhash = accessMethod.hashCode() + accessLocation.hashCode(); in hashCode()
86 return myhash; in hashCode()
DPolicyInformation.java145 int myhash = 37 + policyIdentifier.hashCode(); in hashCode() local
146 myhash = 37 * myhash + policyQualifiers.hashCode(); in hashCode()
147 return myhash; in hashCode()
/libcore/ojluni/src/main/java/java/security/
DCodeSigner.java60 private transient int myhash = -1; field in CodeSigner
107 if (myhash == -1) { in hashCode()
109 myhash = signerCertPath.hashCode(); in hashCode()
111 myhash = signerCertPath.hashCode() + timestamp.hashCode(); in hashCode()
114 return myhash; in hashCode()
171 myhash = -1; in readObject()
DTimestamp.java66 private transient int myhash = -1; field in Timestamp
109 if (myhash == -1) { in hashCode()
110 myhash = timestamp.hashCode() + signerCertPath.hashCode(); in hashCode()
112 return myhash; in hashCode()
161 myhash = -1; in readObject()
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DCertId.java67 private int myhash = -1; // hashcode for this CertId field in CertId
179 if (myhash == -1) { in hashCode()
180 myhash = hashAlgId.hashCode(); in hashCode()
182 myhash += issuerNameHash[i] * i; in hashCode()
185 myhash += issuerKeyHash[i] * i; in hashCode()
187 myhash += certSerialNumber.getNumber().hashCode(); in hashCode()
189 return myhash; in hashCode()
/libcore/ojluni/annotations/hiddenapi/sun/security/x509/
DAccessDescription.java98 private int myhash = -1; // 0xffffffff field in AccessDescription