Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DInstantAppRegistry.java125 private SparseArray<SparseArray<SparseBooleanArray>> mInstantGrants; field in InstantAppRegistry
377 if (mInstantGrants != null) { in onUserRemovedLPw()
378 mInstantGrants.remove(userId); in onUserRemovedLPw()
379 if (mInstantGrants.size() <= 0) { in onUserRemovedLPw()
380 mInstantGrants = null; in onUserRemovedLPw()
388 if (mInstantGrants == null) { in isInstantAccessGranted()
391 final SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in isInstantAccessGranted()
421 if (mInstantGrants == null) { in grantInstantAccessLPw()
422 mInstantGrants = new SparseArray<>(); in grantInstantAccessLPw()
424 SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in grantInstantAccessLPw()
[all …]