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.java408 SparseBooleanArray instantAppList = mInstalledInstantAppUids.get(userId); in grantInstantAccessLPw() local
409 if (instantAppList == null || !instantAppList.get(instantAppId)) { in grantInstantAccessLPw()
412 if (instantAppList.get(targetAppId)) { in grantInstantAccessLPw()
442 SparseBooleanArray instantAppList = mInstalledInstantAppUids.get(userId); in addInstantAppLPw() local
443 if (instantAppList == null) { in addInstantAppLPw()
444 instantAppList = new SparseBooleanArray(); in addInstantAppLPw()
445 mInstalledInstantAppUids.put(userId, instantAppList); in addInstantAppLPw()
447 instantAppList.put(instantAppId, true /*installed*/); in addInstantAppLPw()
456 final SparseBooleanArray instantAppList = mInstalledInstantAppUids.get(userId); in removeInstantAppLPw() local
457 if (instantAppList == null) { in removeInstantAppLPw()
[all …]