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.java970 ArraySet<String> toDisableList = null; in publishManifestShortcuts() local
975 if (toDisableList == null) { in publishManifestShortcuts()
976 toDisableList = new ArraySet<>(); in publishManifestShortcuts()
978 toDisableList.add(si.getId()); in publishManifestShortcuts()
1020 if (!newDisabled && toDisableList != null) { in publishManifestShortcuts()
1022 toDisableList.remove(id); in publishManifestShortcuts()
1028 if (toDisableList != null) { in publishManifestShortcuts()
1032 toDisableList.size())); in publishManifestShortcuts()
1034 for (int i = toDisableList.size() - 1; i >= 0; i--) { in publishManifestShortcuts()
1037 final String id = toDisableList.valueAt(i); in publishManifestShortcuts()