Searched refs:idsToOrphan (Results 1 – 3 of 3) sorted by relevance
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | DownloadReceiver.java | 153 final ArrayList<Long> idsToOrphan = new ArrayList<>(); in handleUidRemoved() local 157 Helpers.handleRemovedUidEntries(context, cursor, idsToDelete, idsToOrphan, null); in handleUidRemoved() 160 if (idsToOrphan.size() > 0) { in handleUidRemoved() 162 + Arrays.toString(idsToOrphan.toArray()) + " as owner package is removed"); in handleUidRemoved() 166 Helpers.buildQueryWithIds(idsToOrphan), null); in handleUidRemoved()
|
D | Helpers.java | 631 @NonNull ArrayList<Long> idsToDelete, @NonNull ArrayList<Long> idsToOrphan, in handleRemovedUidEntries() argument 655 idsToOrphan.add(downloadId); in handleRemovedUidEntries()
|
D | DownloadProvider.java | 628 final ArrayList<Long> idsToOrphan = new ArrayList<>(); in reconcileRemovedUidEntries() local 635 idsToDelete, idsToOrphan, idsToGrantPermission); in reconcileRemovedUidEntries() local 642 if (idsToOrphan.size() > 0) { in reconcileRemovedUidEntries() 644 + Arrays.toString(idsToOrphan.toArray()) + " as owner package is missing"); in reconcileRemovedUidEntries() 648 Helpers.buildQueryWithIds(idsToOrphan), null); in reconcileRemovedUidEntries()
|