Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/pm/
DShortcutPackage.java854 ArraySet<String> toDisableList = null; in publishManifestShortcuts() local
859 if (toDisableList == null) { in publishManifestShortcuts()
860 toDisableList = new ArraySet<>(); in publishManifestShortcuts()
862 toDisableList.add(si.getId()); in publishManifestShortcuts()
904 if (!newDisabled && toDisableList != null) { in publishManifestShortcuts()
906 toDisableList.remove(id); in publishManifestShortcuts()
912 if (toDisableList != null) { in publishManifestShortcuts()
916 toDisableList.size())); in publishManifestShortcuts()
918 for (int i = toDisableList.size() - 1; i >= 0; i--) { in publishManifestShortcuts()
921 final String id = toDisableList.valueAt(i); in publishManifestShortcuts()