Searched defs:applyBatch (Results 1 - 11 of 11) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
H A DCommonDatabaseUtils.java86 public static void applyBatch(ContentResolver resolver, method in class:CommonDatabaseUtils
89 resolver.applyBatch(ContactsContract.AUTHORITY, operations);
/packages/apps/Gallery2/src/com/android/photos/data/
H A DSQLiteContentProvider.java205 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) method in class:SQLiteContentProvider
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DSQLiteContentProvider.java218 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) method in class:SQLiteContentProvider
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactMetadataProvider.java290 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) method in class:ContactMetadataProvider
296 Log.v(TAG, "applyBatch: " + operations.size() + " ops");
301 ContentProviderResult[] results = super.applyBatch(operations);
H A DAbstractContactsProvider.java251 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) method in class:AbstractContactsProvider
255 Log.v(TAG, "applyBatch: " + operations.size() + " ops");
273 Log.v(TAG, "applyBatch: " + opCount + " ops finished; about to yield...");
H A DContactsProvider2.java2373 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) method in class:ContactsProvider2
2376 return super.applyBatch(operations);
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DAsyncQueryServiceTest.java644 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) { method in class:AsyncQueryServiceTest.TestProvider
645 Log.d(TAG, "Provider applyBatch index=" + index);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherProvider.java296 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) method in class:LauncherProvider
302 ContentProviderResult[] result = super.applyBatch(operations);
/packages/providers/TvProvider/src/com/android/providers/tv/
H A DTvProvider.java1075 // We might have more than one thread trying to make its way through applyBatch() so the
1088 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) method in class:TvProvider
1095 ContentProviderResult[] results = super.applyBatch(operations);
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java3881 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) method in class:MediaProvider
3896 ContentProviderResult[] result = super.applyBatch(operations);
/packages/apps/Email/provider_src/com/android/email/provider/
H A DEmailProvider.java635 // If we're in a transaction already (which would happen during applyBatch), then the
2514 // We might have more than one thread trying to make its way through applyBatch() so the
2528 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) method in class:EmailProvider
2533 * calls made in super.applyBatch()
2540 ContentProviderResult[] results = super.applyBatch(operations);
4998 applyBatch(ops);
5000 LogUtils.d(TAG, "applyBatch exception");
5590 applyBatch(mLastSequenceOps);
5595 LogUtils.d(TAG, "applyBatch exception");

Completed in 467 milliseconds