Lines Matching refs:ops
1641 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); in save() local
1668 eventIdIndex = ops.size(); in save()
1670 ops.add(b.build()); in save()
1677 ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build()); in save()
1684 ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build()); in save()
1696 eventIdIndex = ops.size(); in save()
1698 ops.add(b.build()); in save()
1711 ops.add(ContentProviderOperation.newDelete(uri).build()); in save()
1715 updatePastEvents(ops, uri); in save()
1717 eventIdIndex = ops.size(); in save()
1718 ops.add(ContentProviderOperation.newInsert(Events.CONTENT_URI).withValues(values) in save()
1725 ops.add(b.build()); in save()
1729 updatePastEvents(ops, uri); in save()
1733 eventIdIndex = ops.size(); in save()
1734 ops.add(ContentProviderOperation.newInsert(Events.CONTENT_URI).withValues( in save()
1749 ops.add(ContentProviderOperation.newDelete(uri).build()); in save()
1751 eventIdIndex = ops.size(); in save()
1752 ops.add(ContentProviderOperation.newInsert(Events.CONTENT_URI).withValues(values) in save()
1758 ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build()); in save()
1766 saveRemindersWithBackRef(ops, eventIdIndex, reminderMinutes, mOriginalMinutes, in save()
1770 saveReminders(ops, eventId, reminderMinutes, mOriginalMinutes, in save()
1812 ops.add(b.build()); in save()
1864 ops.add(b.build()); in save()
1886 ops.add(b.build()); in save()
1895 getContentResolver().applyBatch(android.provider.Calendar.AUTHORITY, ops); in save()
1916 private void updatePastEvents(ArrayList<ContentProviderOperation> ops, Uri uri) { in updatePastEvents() argument
1959 ops.add(b.build()); in updatePastEvents()
2035 static boolean saveReminders(ArrayList<ContentProviderOperation> ops, long eventId, in saveReminders() argument
2048 ops.add(b.build()); in saveReminders()
2062 ops.add(b.build()); in saveReminders()
2067 static boolean saveRemindersWithBackRef(ArrayList<ContentProviderOperation> ops, in saveRemindersWithBackRef() argument
2079 ops.add(b.build()); in saveRemindersWithBackRef()
2093 ops.add(b.build()); in saveRemindersWithBackRef()