Home | History | Annotate | Download | only in contacts

Lines Matching refs:operations

74     /** Set to true in order to view logs on content provider operations */
254 ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
255 operations.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI)
265 operations.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
274 results = resolver.applyBatch(ContactsContract.AUTHORITY, operations);
356 // Build operations and try applying
359 Log.v(TAG, "Content Provider Operations:");
1052 ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
1056 buildJoinContactDiff(operations, rawContactIds[i], rawContactIds[j]);
1067 operations.add(builder.build());
1073 resolver.applyBatch(ContactsContract.AUTHORITY, operations);
1096 private void buildJoinContactDiff(ArrayList<ContentProviderOperation> operations,
1103 operations.add(builder.build());