Searched defs:callerIsSyncAdapter (Results 1 - 15 of 15) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandlerForNickname.java55 Cursor c, boolean callerIsSyncAdapter) {
59 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) {
54 update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
H A DDataRowHandlerForCommonDataKind.java50 Cursor c, boolean callerIsSyncAdapter) {
57 return super.update(db, txContext, values, c, callerIsSyncAdapter);
49 update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
H A DDataRowHandlerForEmail.java53 Cursor c, boolean callerIsSyncAdapter) {
54 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) {
52 update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
H A DDataRowHandlerForOrganization.java54 Cursor c, boolean callerIsSyncAdapter) {
55 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) {
53 update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
H A DDataRowHandlerForPhoneNumber.java69 Cursor c, boolean callerIsSyncAdapter) {
83 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) {
68 update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
H A DDataRowHandlerForPhoto.java75 Cursor c, boolean callerIsSyncAdapter) {
88 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) {
74 update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
H A DDataRowHandlerForStructuredPostal.java62 Cursor c, boolean callerIsSyncAdapter) {
70 super.update(db, txContext, values, c, callerIsSyncAdapter);
61 update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
H A DDataRowHandlerForGroupMembership.java92 Cursor c, boolean callerIsSyncAdapter) {
96 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) {
91 update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
H A DDataRowHandlerForStructuredName.java65 Cursor c, boolean callerIsSyncAdapter) {
76 super.update(db, txContext, values, c, callerIsSyncAdapter);
64 update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
H A DDataRowHandler.java149 ContentValues values, Cursor c, boolean callerIsSyncAdapter) {
164 if (!callerIsSyncAdapter) {
148 update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
H A DContactsProvider2.java2390 final boolean callerIsSyncAdapter =
2414 id = insertRawContact(uri, values, callerIsSyncAdapter);
2415 mSyncToNetwork |= !callerIsSyncAdapter;
2423 id = insertData(values, callerIsSyncAdapter);
2424 mSyncToNetwork |= !callerIsSyncAdapter;
2431 mSyncToNetwork |= !callerIsSyncAdapter;
2437 id = insertData(values, callerIsSyncAdapter);
2438 mSyncToNetwork |= !callerIsSyncAdapter;
2443 id = insertGroup(uri, values, callerIsSyncAdapter);
2444 mSyncToNetwork |= !callerIsSyncAdapter;
2595 insertRawContact(Uri uri, ContentValues values, boolean callerIsSyncAdapter) argument
2688 insertData(ContentValues values, boolean callerIsSyncAdapter) argument
3022 deleteData(String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
3088 insertGroup(Uri uri, ContentValues values, boolean callerIsSyncAdapter) argument
3672 deleteGroup(Uri uri, long groupId, boolean callerIsSyncAdapter) argument
3701 deleteContact(long contactId, boolean callerIsSyncAdapter) argument
3720 deleteRawContact(long rawContactId, long contactId, boolean callerIsSyncAdapter) argument
3822 markRawContactAsDeleted(long rawContactId, boolean callerIsSyncAdapter) argument
4167 updateGroups(Uri uri, ContentValues values, String selectionWithId, String[] selectionArgs, boolean callerIsSyncAdapter) argument
4225 updateRawContacts(ContentValues values, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
4254 updateRawContact(long rawContactId, ContentValues values, boolean callerIsSyncAdapter) argument
4337 updateData(Uri uri, ContentValues values, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
4374 updateData(ContentValues values, Cursor c, boolean callerIsSyncAdapter) argument
4390 updateContactOptions(ContentValues values, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
4409 updateContactOptions(long contactId, ContentValues values, boolean callerIsSyncAdapter) argument
[all...]
/packages/apps/Browser/src/com/android/browser/provider/
H A DSQLiteContentProvider.java70 boolean callerIsSyncAdapter);
76 String[] selectionArgs, boolean callerIsSyncAdapter);
82 boolean callerIsSyncAdapter);
109 boolean callerIsSyncAdapter = isCallerSyncAdapter(uri);
115 result = insertInTransaction(uri, values, callerIsSyncAdapter);
121 onEndTransaction(callerIsSyncAdapter);
123 result = insertInTransaction(uri, values, callerIsSyncAdapter);
131 boolean callerIsSyncAdapter = isCallerSyncAdapter(uri);
136 Uri result = insertInTransaction(uri, values[i], callerIsSyncAdapter);
144 onEndTransaction(callerIsSyncAdapter);
69 insertInTransaction(Uri uri, ContentValues values, boolean callerIsSyncAdapter) argument
75 updateInTransaction(Uri uri, ContentValues values, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
81 deleteInTransaction(Uri uri, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
234 onEndTransaction(boolean callerIsSyncAdapter) argument
[all...]
H A DBrowserProvider2.java804 protected void onEndTransaction(boolean callerIsSyncAdapter) { argument
805 super.onEndTransaction(callerIsSyncAdapter);
1199 boolean callerIsSyncAdapter) {
1202 if (callerIsSyncAdapter) {
1209 callerIsSyncAdapter);
1214 boolean callerIsSyncAdapter) {
1231 deleted = deleteBookmarks(selection, selectionArgs, callerIsSyncAdapter);
1301 callerIsSyncAdapter);
1357 public Uri insertInTransaction(Uri uri, ContentValues values, boolean callerIsSyncAdapter) { argument
1378 if (!callerIsSyncAdapter) {
1198 deleteBookmarks(String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
1213 deleteInTransaction(Uri uri, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
1606 updateInTransaction(Uri uri, ContentValues values, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
1815 updateBookmarksInTransaction(ContentValues values, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
[all...]
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DSQLiteContentProvider.java63 boolean callerIsSyncAdapter);
69 String[] selectionArgs, boolean callerIsSyncAdapter);
75 boolean callerIsSyncAdapter);
62 insertInTransaction(Uri uri, ContentValues values, boolean callerIsSyncAdapter) argument
68 updateInTransaction(Uri uri, ContentValues values, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
74 deleteInTransaction(Uri uri, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
H A DCalendarProvider2.java1656 * @param callerIsSyncAdapter Set if the content provider client is the sync adapter
1660 boolean callerIsSyncAdapter) {
1676 if (!callerIsSyncAdapter) {
1903 if (callerIsSyncAdapter) {
2033 protected Uri insertInTransaction(Uri uri, ContentValues values, boolean callerIsSyncAdapter) { argument
2038 verifyTransactionAllowed(TRANSACTION_INSERT, uri, values, callerIsSyncAdapter, match,
2048 if (!callerIsSyncAdapter) {
2056 if (callerIsSyncAdapter) {
2139 sendUpdateNotification(id, callerIsSyncAdapter);
2144 id = handleInsertException(originalEventId, values, callerIsSyncAdapter);
1659 handleInsertException(long originalEventId, ContentValues modValues, boolean callerIsSyncAdapter) argument
2910 deleteInTransaction(Uri uri, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
3062 deleteEventInternal(long id, boolean callerIsSyncAdapter, boolean isBatch) argument
3210 deleteReminders(Uri uri, boolean byId, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
3316 updateEventRelatedTable(Uri uri, String table, boolean byId, ContentValues updateValues, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
3578 handleUpdateEvents(Cursor cursor, ContentValues updateValues, boolean callerIsSyncAdapter) argument
3763 updateInTransaction(Uri uri, ContentValues values, String selection, String[] selectionArgs, boolean callerIsSyncAdapter) argument
4373 sendUpdateNotification(boolean callerIsSyncAdapter) argument
4390 sendUpdateNotification(long eventId, boolean callerIsSyncAdapter) argument
[all...]

Completed in 766 milliseconds