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.java391 final SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in isInstantAccessGranted() local
392 if (targetAppList == null) { in isInstantAccessGranted()
395 final SparseBooleanArray instantGrantList = targetAppList.get(targetAppId); in isInstantAccessGranted()
424 SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in grantInstantAccessLPw() local
425 if (targetAppList == null) { in grantInstantAccessLPw()
426 targetAppList = new SparseArray<>(); in grantInstantAccessLPw()
427 mInstantGrants.put(userId, targetAppList); in grantInstantAccessLPw()
429 SparseBooleanArray instantGrantList = targetAppList.get(targetAppId); in grantInstantAccessLPw()
432 targetAppList.put(targetAppId, instantGrantList); in grantInstantAccessLPw()
467 final SparseArray<SparseBooleanArray> targetAppList = mInstantGrants.get(userId); in removeInstantAppLPw() local
[all …]