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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandler.java81 protected String[] mSelectionArgs1 = new String[1]; field in class:DataRowHandler
167 mSelectionArgs1[0] = String.valueOf(dataId);
168 db.update(Tables.DATA, values, Data._ID + " =?", mSelectionArgs1);
228 mSelectionArgs1[0] = String.valueOf(dataId);
230 HASH_INPUT_COLUMNS, Data._ID + "=?", mSelectionArgs1, null, null, null);
273 mSelectionArgs1[0] = String.valueOf(dataId);
276 cols, Data._ID + "=?", mSelectionArgs1, null, null, null);
322 mSelectionArgs1[0] = String.valueOf(dataId);
323 int count = db.delete(Tables.DATA, Data._ID + "=?", mSelectionArgs1);
324 mSelectionArgs1[
[all...]
H A DDataRowHandlerForOrganization.java70 mSelectionArgs1[0] = String.valueOf(dataId);
74 " WHERE " + Data._ID + "=?", mSelectionArgs1);
81 mSelectionArgs1[0] = String.valueOf(dataId);
85 " 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.java1199 private final String[] mSelectionArgs1 = new String[1]; field in class:ContactsProvider2
2580 mSelectionArgs1[0] = String.valueOf(rawContactId);
2583 mSelectionArgs1, null, null, null);
3222 mSelectionArgs1[0] = String.valueOf(dataId);
3224 mSelectionArgs1, null);
3278 mSelectionArgs1[0] = Long.toString(accountId);
3281 RawContactsColumns.CONCRETE_ACCOUNT_ID + "=?", mSelectionArgs1,
3748 mSelectionArgs1[0] = String.valueOf(dataId);
3749 return deleteData(Data._ID + "=?", mSelectionArgs1, callerIsSyncAdapter);
3863 mSelectionArgs1[
[all...]
H A DSearchIndexManager.java243 private String[] mSelectionArgs1 = new String[1]; field in class:SearchIndexManager
H A DContactsDatabaseHelper.java1038 private String[] mSelectionArgs1 = new String[1]; field in class:ContactsDatabaseHelper
4595 mSelectionArgs1[0] = String.valueOf(rawContactId);
4596 Cursor c = db.rawQuery(RawContactNameQuery.RAW_SQL, mSelectionArgs1);
H A DLegacyApiSupport.java184 private String[] mSelectionArgs1 = new String[1]; field in class:LegacyApiSupport
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DAbstractContactAggregator.java175 protected String[] mSelectionArgs1 = new String[1]; field in class:AbstractContactAggregator
576 mSelectionArgs1[0] = String.valueOf(contactId);
579 RawContactIdAndAggregationModeQuery.SELECTION, mSelectionArgs1, null, null, null);
651 mSelectionArgs1[0] = String.valueOf(rawContactId);
652 computeAggregateData(db, mRawContactsQueryByRawContactId, mSelectionArgs1, mContactInsert);
681 mSelectionArgs1[0] = String.valueOf(rawContactId);
684 mSelectionArgs1, null, null, null);
876 mSelectionArgs1[0] = String.valueOf(rawContactIds.iterator().next());
877 computeAggregateData(db, mRawContactsQueryByRawContactId, mSelectionArgs1,
1006 mSelectionArgs1[
[all...]
H A DContactAggregator2.java196 mSelectionArgs1[0] = String.valueOf(rawContactId);
197 final Cursor cursor = db.rawQuery(sql, mSelectionArgs1);
404 mSelectionArgs1[0] = String.valueOf(contactId);
405 final Cursor cursor = db.rawQuery(sql, mSelectionArgs1);
467 mSelectionArgs1[0] = String.valueOf(contactId);
469 RawContactIdQuery.SELECTION, mSelectionArgs1, null, null, null);
582 mSelectionArgs1[0] = String.valueOf(rawContactId);
585 mSelectionArgs1, null, null, null, PRIMARY_HIT_LIMIT_STRING);
H A DContactAggregator.java482 mSelectionArgs1[0] = String.valueOf(contactId);
484 RawContactIdQuery.SELECTION, mSelectionArgs1, null, null, null);
762 mSelectionArgs1[0] = String.valueOf(rawContactId);
765 mSelectionArgs1, null, null, null, PRIMARY_HIT_LIMIT_STRING);

Completed in 106 milliseconds