Searched refs:operations (Results 1 - 14 of 14) sorted by relevance

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DSQLiteContentProvider.java216 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
218 final int numOperations = operations.size();
224 final boolean isCallerSyncAdapter = getIsCallerSyncAdapter(operations.get(0).getUri());
230 final ContentProviderOperation operation = operations.get(i);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DAbstractContactsProvider.java35 * but exposes awareness of batch operations to the subclass so that cross-database operations
54 * Maximum number of operations allowed in a batch between yield points.
76 * and initiate a transaction on that database. This should be used to ensure that operations
203 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
206 Log.v(TAG, "applyBatch: " + operations.size() + " ops");
212 final int numOperations = operations.size();
217 "Too many content provider operations between yield points. "
218 + "The maximum number of operations per yield point is "
221 final ContentProviderOperation operation = operations
[all...]
H A DContactsProvider2.java2219 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
2222 return super.applyBatch(operations);
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DGoogleSource.java221 ArrayList<ContentProviderOperation> operations =
224 operations.add(ContentProviderOperation
229 operations.add(ContentProviderOperation
236 ContactsContract.AUTHORITY, operations);
/packages/apps/Browser/src/com/android/browser/provider/
H A DSQLiteContentProvider.java49 * Maximum number of operations allowed in a batch between yield points.
195 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
204 final int numOperations = operations.size();
209 "Too many content provider operations between yield points. "
210 + "The maximum number of operations per yield point is "
213 final ContentProviderOperation operation = operations.get(i);
/packages/apps/Gallery2/src/com/android/photos/data/
H A DSQLiteContentProvider.java50 * Maximum number of operations allowed in a batch between yield points.
205 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
214 final int numOperations = operations.size();
219 "Too many content provider operations between yield points. "
220 + "The maximum number of operations per yield point is "
223 final ContentProviderOperation operation = operations.get(i);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DFolderOperations.java32 * Object that contains a list of folder operations (application/removals of folders)
61 * Adds an operation to the list of folder operations to be applied. The last
62 * operation for a folder will be retained in the list of operations.
141 * Return the number of folder operations
148 * Returns a FolderOperations object that will revert the operations described in
163 * Returns an array of the folder operations
164 * @return Array of the folder operations to perform
179 * @return Serialized representation of the folder operations
181 public static String serialize(FolderOperations operations) { argument
/packages/apps/Contacts/src/com/android/contacts/
H A DContactSaveService.java78 /** Set to true in order to view logs on content provider operations */
258 ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
259 operations.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI)
269 operations.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
278 results = resolver.applyBatch(ContactsContract.AUTHORITY, operations);
360 // Build operations and try applying
1048 ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
1052 buildJoinContactDiff(operations, rawContactIds[i], rawContactIds[j]);
1063 operations.add(builder.build());
1069 resolver.applyBatch(ContactsContract.AUTHORITY, operations);
1092 buildJoinContactDiff(ArrayList<ContentProviderOperation> operations, long rawContactId1, long rawContactId2) argument
[all...]
/packages/apps/Calendar/tests/src/com/android/calendar/event/
H A DEditEventHelperTest.java194 ArrayList<ContentProviderOperation> operations) {
198 verifySaveEventNewEvent(operations);
202 verifySaveEventModifyRecurring(operations);
206 verifySaveEventRecurringToNonRecurring(operations);
210 verifySaveEventNonRecurringToRecurring(operations);
214 verifySaveEventUpdateNonRecurring(operations);
218 verifySaveEventModifySingleInstance(operations);
222 verifySaveEventModifyAllFollowingWithNonRecurring(operations);
226 verifySaveEventModifyAllFollowingFirstWithNonRecurring(operations);
230 verifySaveEventModifyAllFollowingFirstWithRecurring(operations);
193 mockApplyBatch(String authority, ArrayList<ContentProviderOperation> operations) argument
[all...]
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DAsyncQueryServiceTest.java130 assertEquals("Not all operations were executed.", work.length, aqs
156 assertEquals("Not all operations were executed.", work.length, aqs
184 assertEquals("Not all operations were executed.", work.length, aqs
214 assertEquals("Not all operations were executed.", work.length, aqs
246 assertEquals("Not all operations were executed.", work.length, aqs
268 assertEquals("Not all operations were executed.", work.length, aqs
296 assertEquals("Not all operations were executed.", expected.length, aqs
328 assertEquals("Not all operations were executed.", expected.length, aqs
360 assertEquals("Not all operations were executed.", expected.length, aqs
644 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) { argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java1461 * Quick and dirty class that executes underlying provider CRUD operations on a background
1600 // Keep track of whether our operations require recalibrating the cursor position
1758 // "Mostly" operations are reflected globally, but not locally, except to set
2047 * Apply many operations in a single batch transaction.
2048 * @param op the collection of operations obtained through successive calls to
2099 private int apply(Collection<ConversationOperation> operations) { argument
2100 return sProvider.apply(operations, this);
/packages/apps/Camera2/src/com/android/camera/
H A DCameraActivity.java126 // Supported operations at FilmStripView. Different data has different
127 // set of supported operations.
583 * According to the data type, make the menu items for supported operations
796 inflater.inflate(R.menu.operations, menu);
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java3697 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
3700 // The operations array provides no overall information about the URI(s) being operated
3712 ContentProviderResult[] result = super.applyBatch(operations);
/packages/apps/Email/src/com/android/email/provider/
H A DEmailProvider.java168 /** Appended to the notification URI for delete operations */
170 /** Appended to the notification URI for insert operations */
172 /** Appended to the notification URI for update operations */
2074 public ContentProviderResult[] applyBatch(ArrayList<ContentProviderOperation> operations) argument
2080 ContentProviderResult[] results = super.applyBatch(operations);
4936 // First see if we have any operations saved
4950 // But clear the operations
5171 * Restart any push operations for an account.

Completed in 464 milliseconds