Searched defs:KeymasterCertificateChain (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterCertificateChain.java31 public class KeymasterCertificateChain implements Parcelable { class in inherits:Parcelable
35 public static final Parcelable.Creator<KeymasterCertificateChain> CREATOR = new
36 Parcelable.Creator<KeymasterCertificateChain>() {
37 public KeymasterCertificateChain createFromParcel(Parcel in) {
38 return new KeymasterCertificateChain(in);
40 public KeymasterCertificateChain[] newArray(int size) {
41 return new KeymasterCertificateChain[size];
45 public KeymasterCertificateChain() { method in class:KeymasterCertificateChain
49 public KeymasterCertificateChain(List<byte[]> mCertificates) { method in class:KeymasterCertificateChain
53 private KeymasterCertificateChain(Parce method in class:KeymasterCertificateChain
[all...]

Completed in 147 milliseconds