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.java128 private SparseArray<SparseArray<SparseBooleanArray>> mInstantGrants; field in InstantAppRegistry
379 if (mInstantGrants != null) { in onUserRemovedLPw()
380 mInstantGrants.remove(userId); in onUserRemovedLPw()
381 if (mInstantGrants.size() <= 0) { in onUserRemovedLPw()
382 mInstantGrants = null; in onUserRemovedLPw()
390 if (mInstantGrants == null) { in isInstantAccessGranted()
393 final SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in isInstantAccessGranted()
423 if (mInstantGrants == null) { in grantInstantAccessLPw()
424 mInstantGrants = new SparseArray<>(); in grantInstantAccessLPw()
426 SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in grantInstantAccessLPw()
[all …]