Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DInstantAppRegistry.java117 private SparseArray<List<UninstalledInstantAppState>> mUninstalledInstantApps; field in InstantAppRegistry
366 if (mUninstalledInstantApps != null) { in onUserRemovedLPw()
367 mUninstalledInstantApps.remove(userId); in onUserRemovedLPw()
368 if (mUninstalledInstantApps.size() <= 0) { in onUserRemovedLPw()
369 mUninstalledInstantApps = null; in onUserRemovedLPw()
498 if (mUninstalledInstantApps == null) { in addUninstalledInstantAppLPw()
499 mUninstalledInstantApps = new SparseArray<>(); in addUninstalledInstantAppLPw()
502 mUninstalledInstantApps.get(userId); in addUninstalledInstantAppLPw()
505 mUninstalledInstantApps.put(userId, uninstalledAppStates); in addUninstalledInstantAppLPw()
571 if (mUninstalledInstantApps == null) { in removeUninstalledInstantAppStateLPw()
[all …]