HomeSort by relevance Sort by last modified time
    Searched refs:mPendingItems (Results 1 - 2 of 2) sorted by null

  /frameworks/base/services/core/java/com/android/server/pm/
ShortcutBitmapSaver.java 107 @GuardedBy("mPendingItems")
108 private final Deque<PendingItem> mPendingItems = new LinkedBlockingDeque<>();
198 synchronized (mPendingItems) {
199 mPendingItems.add(item);
216 * Takes a {@link PendingItem} from {@link #mPendingItems} and process it.
242 synchronized (mPendingItems) {
243 if (mPendingItems.size() == 0) {
246 item = mPendingItems.pop();
299 synchronized (mPendingItems) {
300 final int N = mPendingItems.size()
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
InstallShortcutReceiver.java 594 private final ArrayList<PendingInstallShortcutInfo> mPendingItems;
598 mPendingItems = items;
610 for (PendingInstallShortcutInfo pendingInfo : mPendingItems) {

Completed in 216 milliseconds