Home
last modified time | relevance | path

Searched refs:opCount (Results 1 – 3 of 3) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DAbstractContactsProvider.java224 int opCount = 0; in bulkInsert() local
228 if (++opCount >= BULK_INSERTS_PER_YIELD_POINT) { in bulkInsert()
229 opCount = 0; in bulkInsert()
258 int opCount = 0; in applyBatch() local
264 if (++opCount >= MAX_OPERATIONS_PER_YIELD_POINT) { in applyBatch()
273 … Log.v(TAG, "applyBatch: " + opCount + " ops finished; about to yield..."); in applyBatch()
275 opCount = 0; in applyBatch()
/packages/apps/Gallery2/src/com/android/photos/data/
DSQLiteContentProvider.java208 int opCount = 0; in applyBatch() local
217 if (++opCount >= MAX_OPERATIONS_PER_YIELD_POINT) { in applyBatch()
228 opCount = 0; in applyBatch()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DBinaryDictionaryTests.java562 for (int opCount = 0; opCount < operationCountInEachIteration; opCount++) { in testRandomOperationsAndFlashWithGC()