Searched refs:mSelectionArgs1 (Results 1 - 9 of 9) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandler.java78 protected String[] mSelectionArgs1 = new String[1]; field in class:DataRowHandler
157 mSelectionArgs1[0] = String.valueOf(dataId);
158 db.update(Tables.DATA, values, Data._ID + " =?", mSelectionArgs1);
205 mSelectionArgs1[0] = String.valueOf(dataId);
208 cols, Data._ID + "=?", mSelectionArgs1, null, null, null);
254 mSelectionArgs1[0] = String.valueOf(dataId);
255 int count = db.delete(Tables.DATA, Data._ID + "=?", mSelectionArgs1);
256 mSelectionArgs1[0] = String.valueOf(rawContactId);
257 db.delete(Tables.PRESENCE, PresenceColumns.RAW_CONTACT_ID + "=?", mSelectionArgs1);
273 mSelectionArgs1[
[all...]
H A DDataRowHandlerForOrganization.java71 mSelectionArgs1[0] = String.valueOf(dataId);
75 " WHERE " + Data._ID + "=?", mSelectionArgs1);
82 mSelectionArgs1[0] = String.valueOf(dataId);
86 " WHERE " + Data._ID + "=?", mSelectionArgs1);
H A DDataRowHandlerForPhoneNumber.java116 mSelectionArgs1[0] = String.valueOf(dataId);
117 db.delete(Tables.PHONE_LOOKUP, PhoneLookupColumns.DATA_ID + "=?", mSelectionArgs1);
H A DDataRowHandlerForGroupMembership.java193 mSelectionArgs1[0] = String.valueOf(rawContactId);
195 RawContactsColumns.CONCRETE_ID + "=?", mSelectionArgs1, null, null, null);
H A DContactsProvider2.java1056 private final String[] mSelectionArgs1 = new String[1]; field in class:ContactsProvider2
2887 mSelectionArgs1[0] = String.valueOf(dataId);
2889 mSelectionArgs1, null);
2951 mSelectionArgs1[0] = Long.toString(accountId);
2954 RawContactsColumns.CONCRETE_ACCOUNT_ID + "=?", mSelectionArgs1,
3418 mSelectionArgs1[0] = String.valueOf(dataId);
3419 return deleteData(Data._ID + "=?", mSelectionArgs1, callerIsSyncAdapter);
3537 mSelectionArgs1[0] = Long.toString(contactId);
3539 RawContacts.CONTACT_ID + "=?", mSelectionArgs1,
3810 mSelectionArgs1[
[all...]
H A DSearchIndexManager.java239 private String[] mSelectionArgs1 = new String[1]; field in class:SearchIndexManager
H A DLegacyApiSupport.java206 private String[] mSelectionArgs1 = new String[1]; field in class:LegacyApiSupport
1167 mSelectionArgs1[0] = String.valueOf(contactId);
1168 mDb.execSQL(ContactsProvider2.UPDATE_TIMES_CONTACTED_CONTACTS_TABLE, mSelectionArgs1);
1173 mSelectionArgs1[0] = String.valueOf(contactId);
1174 mDb.execSQL(ContactsProvider2.UPDATE_TIMES_CONTACTED_RAWCONTACTS_TABLE, mSelectionArgs1);
H A DContactsDatabaseHelper.java748 private String[] mSelectionArgs1 = new String[1]; field in class:ContactsDatabaseHelper
5019 mSelectionArgs1[0] = String.valueOf(rawContactId);
5020 Cursor c = db.rawQuery(RawContactNameQuery.RAW_SQL, mSelectionArgs1);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java161 private String[] mSelectionArgs1 = new String[1]; field in class:ContactAggregator
550 mSelectionArgs1[0] = String.valueOf(contactId);
553 RawContactIdAndAggregationModeQuery.SELECTION, mSelectionArgs1, null, null, null);
623 mSelectionArgs1[0] = String.valueOf(rawContactId);
624 computeAggregateData(db, mRawContactsQueryByRawContactId, mSelectionArgs1, mContactInsert);
653 mSelectionArgs1[0] = String.valueOf(rawContactId);
656 mSelectionArgs1, null, null, null);
949 mSelectionArgs1[0] = String.valueOf(contactId);
953 " WHERE " + RawContacts.CONTACT_ID + "=?", mSelectionArgs1);
976 Cursor cursor = db.rawQuery(query, mSelectionArgs1);
[all...]

Completed in 190 milliseconds