Home
last modified time | relevance | path

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

/frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/
DCredential.java847 private X509Certificate[] mCaCertificates = null; field in Credential
855 mCaCertificates = null; in setCaCertificate()
857 mCaCertificates = new X509Certificate[] {caCertificate}; in setCaCertificate()
868 mCaCertificates = caCertificates; in setCaCertificates()
878 return mCaCertificates == null || mCaCertificates.length > 1 ? null : mCaCertificates[0]; in getCaCertificate()
888 return mCaCertificates; in getCaCertificates()
962 if (source.mCaCertificates != null) { in Credential()
963 mCaCertificates = Arrays.copyOf(source.mCaCertificates, in Credential()
964 source.mCaCertificates.length); in Credential()
985 ParcelUtil.writeCertificates(dest, mCaCertificates); in writeToParcel()
[all …]