Searched refs:mKeySetMapping (Results 1 – 3 of 3) sorted by relevance
58 protected final LongSparseArray<ArraySet<Long>> mKeySetMapping; field in KeySetManagerService69 mKeySetMapping = new LongSparseArray<ArraySet<Long>>(); in KeySetManagerService()173 ArraySet<Long> publicKeyIds = mKeySetMapping.get(id); in addSigningKeySetToPackageLPw()187 ArraySet<Long> definedKeys = mKeySetMapping.get(keySetID); in addSigningKeySetToPackageLPw()243 if(mKeySetMapping.get(id) == null) { in getPublicKeysFromKeySetLPr()247 for (long pkId : mKeySetMapping.get(id)) { in getPublicKeysFromKeySetLPr()333 mKeySetMapping.put(id, addedKeyIds); in addKeySetLPw()340 ArraySet<Long> pSigningKeys = mKeySetMapping.get(pProperSigning); in addKeySetLPw()374 for (int keyMapIndex = 0; keyMapIndex < mKeySetMapping.size(); keyMapIndex++) { in getIdFromKeyIdsLPr()375 ArraySet<Long> value = mKeySetMapping.valueAt(keyMapIndex); in getIdFromKeyIdsLPr()[all …]
6072 if (pkg.mKeySetMapping != null) { in scanPackageDirtyLI()6074 pkg.mKeySetMapping.entrySet()) { in scanPackageDirtyLI()
2141 owner.mKeySetMapping = new ArrayMap<String, ArraySet<PublicKey>>(); in parseKeySets()2155 owner.mKeySetMapping.put(keySetName, new ArraySet<PublicKey>()); in parseKeySets()2157 owner.mKeySetMapping.get(keySetName).add(publicKeys.get(s)); in parseKeySets()2160 if (owner.mKeySetMapping.keySet().containsAll(upgradeKeySets)) { in parseKeySets()4322 public ArrayMap<String, ArraySet<PublicKey>> mKeySetMapping; field in PackageParser.Package