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.java126 private SparseArray<SparseArray<SparseBooleanArray>> mInstantGrants; field in InstantAppRegistry
378 if (mInstantGrants != null) { in onUserRemovedLPw()
379 mInstantGrants.remove(userId); in onUserRemovedLPw()
380 if (mInstantGrants.size() <= 0) { in onUserRemovedLPw()
381 mInstantGrants = null; in onUserRemovedLPw()
389 if (mInstantGrants == null) { in isInstantAccessGranted()
392 final SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in isInstantAccessGranted()
422 if (mInstantGrants == null) { in grantInstantAccessLPw()
423 mInstantGrants = new SparseArray<>(); in grantInstantAccessLPw()
425 SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in grantInstantAccessLPw()
[all …]