Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DInstantAppRegistry.java410 SparseBooleanArray instantAppList = mInstalledInstantAppUids.get(userId); in grantInstantAccessLPw() local
411 if (instantAppList == null || !instantAppList.get(instantAppId)) { in grantInstantAccessLPw()
414 if (instantAppList.get(recipientUid)) { in grantInstantAccessLPw()
444 SparseBooleanArray instantAppList = mInstalledInstantAppUids.get(userId); in addInstantAppLPw() local
445 if (instantAppList == null) { in addInstantAppLPw()
446 instantAppList = new SparseBooleanArray(); in addInstantAppLPw()
447 mInstalledInstantAppUids.put(userId, instantAppList); in addInstantAppLPw()
449 instantAppList.put(instantAppId, true /*installed*/); in addInstantAppLPw()
458 final SparseBooleanArray instantAppList = mInstalledInstantAppUids.get(userId); in removeInstantAppLPw() local
459 if (instantAppList == null) { in removeInstantAppLPw()
[all …]