Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DEphemeralApplicationRegistry.java195 List<UninstalledEphemeralAppState> uninstalledAppStates = in onPackageInstalledLPw() local
197 if (uninstalledAppStates != null) { in onPackageInstalledLPw()
198 final int appCount = uninstalledAppStates.size(); in onPackageInstalledLPw()
201 uninstalledAppStates.get(i); in onPackageInstalledLPw()
204 uninstalledAppStates.remove(i); in onPackageInstalledLPw()
276 List<UninstalledEphemeralAppState> uninstalledAppStates = in addUninstalledEphemeralAppLPw() local
278 if (uninstalledAppStates == null) { in addUninstalledEphemeralAppLPw()
279 uninstalledAppStates = new ArrayList<>(); in addUninstalledEphemeralAppLPw()
280 mUninstalledEphemeralApps.put(userId, uninstalledAppStates); in addUninstalledEphemeralAppLPw()
284 uninstalledAppStates.add(uninstalledAppState); in addUninstalledEphemeralAppLPw()
[all …]