Home
last modified time | relevance | path

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

/packages/providers/TvProvider/src/com/android/providers/tv/
DEpgDataCleanupService.java80 int deleteCount = getContentResolver().delete( in clearOldPrograms() local
84 if (DEBUG && deleteCount > 0) { in clearOldPrograms()
85 Log.d(TAG, "Deleted " + deleteCount + " programs" in clearOldPrograms()
98 int deleteCount = getContentResolver().delete( in clearOldWatchHistory() local
102 if (DEBUG && deleteCount > 0) { in clearOldWatchHistory()
103 Log.d(TAG, "Deleted " + deleteCount + " watched programs" in clearOldWatchHistory()
142 int deleteCount = getContentResolver().delete( in clearOverflowWatchHistory() local
146 if (DEBUG && deleteCount > 0) { in clearOverflowWatchHistory()
147 Log.d(TAG, "Deleted " + deleteCount + " of " + totalCount + " watched programs" in clearOverflowWatchHistory()
/packages/providers/MediaProvider/src/com/android/providers/media/util/
DMetrics.java52 long durationMillis, int insertCount, int updateCount, int deleteCount) { in logScan() argument
56 updateCount, deleteCount); in logScan()
61 final float normalizedDeleteCount = ((float) deleteCount) / itemCount; in logScan()
/packages/modules/Permission/PermissionController/iconloaderlib/src/com/android/launcher3/icons/cache/
DIconCacheUpdateHandler.java222 int deleteCount = 0; in finish() local
230 if (deleteCount > 0) { in finish()
234 deleteCount++; in finish()
239 if (deleteCount > 0) { in finish()
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/sync/
DMediaResetWorker.java142 int deleteCount = 0; in start() local
146 deleteCount = operation.execute(/* cursor= */ null); in start()
162 Log.i(TAG, String.format("Reset operation complete. Deleted rows: %d", deleteCount)); in start()