Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DInstantAppRegistry.java392 final SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in isInstantAccessGranted() local
393 if (targetAppList == null) { in isInstantAccessGranted()
396 final SparseBooleanArray instantGrantList = targetAppList.get(targetAppId); in isInstantAccessGranted()
425 SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in grantInstantAccessLPw() local
426 if (targetAppList == null) { in grantInstantAccessLPw()
427 targetAppList = new SparseArray<>(); in grantInstantAccessLPw()
428 mInstantGrants.put(userId, targetAppList); in grantInstantAccessLPw()
430 SparseBooleanArray instantGrantList = targetAppList.get(targetAppId); in grantInstantAccessLPw()
433 targetAppList.put(targetAppId, instantGrantList); in grantInstantAccessLPw()
468 final SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in removeInstantAppLPw() local
[all …]