Home
last modified time | relevance | path

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

/aosp12/packages/providers/MediaProvider/src/com/android/providers/media/util/
H A DMetrics.java47 long durationMillis, int insertCount, int updateCount, int deleteCount) { in logScan() argument
51 updateCount, deleteCount)); in logScan()
55 final float normalizedUpdateCount = ((float) updateCount) / itemCount; in logScan()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DConversationNotifications.kt192 fun updateCount(isExpanded: Boolean) { regex
201 updateCount(isExpanded)
204 updateCount(isExpanded)
207 updateCount(entry.row?.isExpanded == true)
/aosp12/packages/apps/TV/tests/unit/src/com/android/tv/data/
H A DChannelDataManagerTest.java490 int updateCount = 0; in update() local
505 updateCount += updated ? 1 : 0; in update()
507 if (updateCount > 0) { in update()
518 return updateCount; in update()
/aosp12/packages/apps/Contacts/tests/src/com/android/contacts/model/
H A DRawContactDeltaListTests.java310 int updateCount = 0; in countExceptionUpdates() local
315 updateCount++; in countExceptionUpdates()
318 return updateCount; in countExceptionUpdates()
/aosp12/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
H A DTelephonyProviderTest.java1168 final int updateCount = mContentResolver.update(URI_TELEPHONY, contentValuesOthersUpdate, in testTelephonyUriDpcRecordAccessControl() local
1170 assertEquals(1, updateCount); in testTelephonyUriDpcRecordAccessControl()
1248 final int updateCount = mContentResolver.update( in testDpcUri() local
1251 assertEquals(1, updateCount); in testDpcUri()
1344 final int updateCount = mContentResolver.update( in testDpcUriOnConflict() local
1349 assertEquals(0, updateCount); in testDpcUriOnConflict()
/aosp12/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java669 final int updateCount = keysToUpdate.size(); in markAcquiredConnectionsLocked() local
670 for (int i = 0; i < updateCount; i++) { in markAcquiredConnectionsLocked()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapContentObserver.java2143 int updateCount = 0; in setEmailMessageStatusDelete() local
2157 updateCount = mResolver.update(uri, contentValues, null, null); in setEmailMessageStatusDelete()
2160 if (updateCount > 0) { in setEmailMessageStatusDelete()
2196 updateCount = mResolver.update(uri, contentValues, null, null); in setEmailMessageStatusDelete()
2197 if (updateCount > 0) { in setEmailMessageStatusDelete()
/aosp12/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsProvider2.java4315 int updateCount = 0; in updateStatusUpdate() local
4318 updateCount = db.update(Tables.STATUS_UPDATES, in updateStatusUpdate()
4327 updateCount = db.update(Tables.PRESENCE, settableValues, selection, selectionArgs); in updateStatusUpdate()
4331 return updateCount; in updateStatusUpdate()