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.java409 SparseBooleanArray instantAppList = mInstalledInstantAppUids.get(userId); in grantInstantAccessLPw() local
410 if (instantAppList == null || !instantAppList.get(instantAppId)) { in grantInstantAccessLPw()
413 if (instantAppList.get(targetAppId)) { in grantInstantAccessLPw()
443 SparseBooleanArray instantAppList = mInstalledInstantAppUids.get(userId); in addInstantAppLPw() local
444 if (instantAppList == null) { in addInstantAppLPw()
445 instantAppList = new SparseBooleanArray(); in addInstantAppLPw()
446 mInstalledInstantAppUids.put(userId, instantAppList); in addInstantAppLPw()
448 instantAppList.put(instantAppId, true /*installed*/); in addInstantAppLPw()
457 final SparseBooleanArray instantAppList = mInstalledInstantAppUids.get(userId); in removeInstantAppLPw() local
458 if (instantAppList == null) { in removeInstantAppLPw()
[all …]