HomeSort by relevance Sort by last modified time
    Searched defs:KeymasterCertificateChain (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/security/keymaster/
KeymasterCertificateChain.java 31 public class KeymasterCertificateChain implements 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() {
49 public KeymasterCertificateChain(List<byte[]> mCertificates) {
53 private KeymasterCertificateChain(Parcel in)
    [all...]
  /system/security/keystore/include/keystore/
IKeystoreService.h 94 struct KeymasterCertificateChain {
95 KeymasterCertificateChain();
96 ~KeymasterCertificateChain();
249 KeymasterCertificateChain* outChain) = 0;
  /system/security/keystore/
IKeystoreService.cpp 211 KeymasterCertificateChain::KeymasterCertificateChain() {
215 KeymasterCertificateChain::~KeymasterCertificateChain() {
243 void KeymasterCertificateChain::readFromParcel(const Parcel& in) {
268 void KeymasterCertificateChain::writeToParcel(Parcel* out) const {
    [all...]

Completed in 93 milliseconds