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);
203 mSelectionArgs1[0] = String.valueOf(dataId);
206 cols, Data._ID + "=?", mSelectionArgs1, null, null, null);
252 mSelectionArgs1[0] = String.valueOf(dataId);
253 int count = db.delete(Tables.DATA, Data._ID + "=?", mSelectionArgs1);
254 mSelectionArgs1[0] = String.valueOf(rawContactId);
255 db.delete(Tables.PRESENCE, PresenceColumns.RAW_CONTACT_ID + "=?", mSelectionArgs1);
271 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.java1108 private final String[] mSelectionArgs1 = new String[1]; field in class:ContactsProvider2
3010 mSelectionArgs1[0] = String.valueOf(dataId);
3012 mSelectionArgs1, null);
3072 mSelectionArgs1[0] = Long.toString(accountId);
3075 RawContactsColumns.CONCRETE_ACCOUNT_ID + "=?", mSelectionArgs1,
3542 mSelectionArgs1[0] = String.valueOf(dataId);
3543 return deleteData(Data._ID + "=?", mSelectionArgs1, callerIsSyncAdapter);
3661 mSelectionArgs1[0] = Long.toString(contactId);
3663 RawContacts.CONTACT_ID + "=?", mSelectionArgs1,
3946 mSelectionArgs1[
[all...]
H A DSearchIndexManager.java243 private String[] mSelectionArgs1 = new String[1]; field in class:SearchIndexManager
H A DLegacyApiSupport.java206 private String[] mSelectionArgs1 = new String[1]; field in class:LegacyApiSupport
1165 mSelectionArgs1[0] = String.valueOf(contactId);
1166 mDb.execSQL(ContactsProvider2.UPDATE_TIMES_CONTACTED_CONTACTS_TABLE, mSelectionArgs1);
1171 mSelectionArgs1[0] = String.valueOf(contactId);
1172 mDb.execSQL(ContactsProvider2.UPDATE_TIMES_CONTACTED_RAWCONTACTS_TABLE, mSelectionArgs1);
H A DContactsDatabaseHelper.java777 private String[] mSelectionArgs1 = new String[1]; field in class:ContactsDatabaseHelper
5223 mSelectionArgs1[0] = String.valueOf(rawContactId);
5224 Cursor c = db.rawQuery(RawContactNameQuery.RAW_SQL, mSelectionArgs1);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java166 private String[] mSelectionArgs1 = new String[1]; field in class:ContactAggregator
562 mSelectionArgs1[0] = String.valueOf(contactId);
565 RawContactIdAndAggregationModeQuery.SELECTION, mSelectionArgs1, null, null, null);
635 mSelectionArgs1[0] = String.valueOf(rawContactId);
636 computeAggregateData(db, mRawContactsQueryByRawContactId, mSelectionArgs1, mContactInsert);
665 mSelectionArgs1[0] = String.valueOf(rawContactId);
668 mSelectionArgs1, null, null, null);
960 mSelectionArgs1[0] = String.valueOf(contactId);
964 " WHERE " + RawContacts.CONTACT_ID + "=?", mSelectionArgs1);
987 Cursor cursor = db.rawQuery(query, mSelectionArgs1);
[all...]

Completed in 104 milliseconds