Home
last modified time | relevance | path

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

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DSQLiteContentProvider.java91 boolean isCallerSyncAdapter = getIsCallerSyncAdapter(uri); in insert()
96 result = insertInTransaction(uri, values, isCallerSyncAdapter); in insert()
105 onEndTransaction(isCallerSyncAdapter); in insert()
107 result = insertInTransaction(uri, values, isCallerSyncAdapter); in insert()
118 boolean isCallerSyncAdapter = getIsCallerSyncAdapter(uri); in bulkInsert()
123 Uri result = insertInTransaction(uri, values[i], isCallerSyncAdapter); in bulkInsert()
134 onEndTransaction(isCallerSyncAdapter); in bulkInsert()
142 boolean isCallerSyncAdapter = getIsCallerSyncAdapter(uri); in update()
148 isCallerSyncAdapter); in update()
157 onEndTransaction(isCallerSyncAdapter); in update()
[all …]
/packages/apps/Browser/src/com/android/browser/provider/
DSQLiteContentProvider.java94 public boolean isCallerSyncAdapter(Uri uri) { in isCallerSyncAdapter() method in SQLiteContentProvider
109 boolean callerIsSyncAdapter = isCallerSyncAdapter(uri); in insert()
131 boolean callerIsSyncAdapter = isCallerSyncAdapter(uri); in bulkInsert()
151 boolean callerIsSyncAdapter = isCallerSyncAdapter(uri); in update()
175 boolean callerIsSyncAdapter = isCallerSyncAdapter(uri); in delete()
214 if (!callerIsSyncAdapter && isCallerSyncAdapter(operation.getUri())) { in applyBatch()
DBrowserProvider2.java800 public boolean isCallerSyncAdapter(Uri uri) { in isCallerSyncAdapter() method in BrowserProvider2