Searched refs:mPublicKeys (Results 1 - 1 of 1) sorted by last modified time

/frameworks/base/services/core/java/com/android/server/pm/
H A DKeySetManagerService.java56 private final LongSparseArray<PublicKey> mPublicKeys; field in class:KeySetManagerService
68 mPublicKeys = new LongSparseArray<PublicKey>();
248 mPubKeys.add(mPublicKeys.get(pkId));
363 mPublicKeys.put(id, key);
388 for (int publicKeyIndex = 0; publicKeyIndex < mPublicKeys.size(); publicKeyIndex++) {
389 PublicKey value = mPublicKeys.valueAt(publicKeyIndex);
392 return mPublicKeys.keyAt(publicKeyIndex);
449 mPublicKeys.delete(keyId);
591 for (int pKeyIndex = 0; pKeyIndex < mPublicKeys.size(); pKeyIndex++) {
592 long id = mPublicKeys
[all...]

Completed in 27 milliseconds