Home
last modified time | relevance | path

Searched refs:PRESENCE (Results 1 – 13 of 13) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsDatabaseHelper.java183 public static final String PRESENCE = "presence"; field
638 String CONCRETE_PRESENCE = Tables.STATUS_UPDATES + "." + StatusUpdates.PRESENCE;
653 String CONCRETE_PRESENCE = ALIAS + "." + StatusUpdates.PRESENCE;
1090 db.execSQL("DELETE FROM " + Tables.PRESENCE + ";"); in onOpen()
1129 db.execSQL("CREATE TABLE IF NOT EXISTS " + Tables.PRESENCE + " ("+ in createPresenceTables()
1137 StatusUpdates.PRESENCE + " INTEGER," + in createPresenceTables()
1144 + Tables.PRESENCE + " (" + PresenceColumns.RAW_CONTACT_ID + ");"); in createPresenceTables()
1146 + Tables.PRESENCE + " (" + PresenceColumns.CONTACT_ID + ");"); in createPresenceTables()
1152 StatusUpdates.PRESENCE + " INTEGER," + in createPresenceTables()
1156 db.execSQL("CREATE TRIGGER IF NOT EXISTS " + Tables.PRESENCE + "_deleted" in createPresenceTables()
[all …]
DContactsProvider2.java637 Tables.AGGREGATED_PRESENCE + "." + StatusUpdates.PRESENCE)
707 Tables.AGGREGATED_PRESENCE + '.' + StatusUpdates.PRESENCE)
723 .add(Data.PRESENCE, Tables.PRESENCE + "." + StatusUpdates.PRESENCE)
724 .add(Data.CHAT_CAPABILITY, Tables.PRESENCE + "." + StatusUpdates.CHAT_CAPABILITY)
1056 .add(StatusUpdates.PRESENCE)
1122 " FROM " + Tables.STATUS_UPDATES + " LEFT OUTER JOIN " + Tables.PRESENCE +
3483 final String presence = inputValues.getAsString(StatusUpdates.PRESENCE); in insertStatusUpdate()
3502 values.put(StatusUpdates.PRESENCE, presence); in insertStatusUpdate()
3507 db.replace(Tables.PRESENCE, null, values); in insertStatusUpdate()
3983 db.delete(Tables.PRESENCE, PresenceColumns.RAW_CONTACT_ID + whereClause.toString(), in deleteRawContactsImmediately()
[all …]
DGlobalSearchSupport.java67 "(SELECT " + StatusUpdates.PRESENCE +
DDataRowHandler.java320 db.delete(Tables.PRESENCE, PresenceColumns.RAW_CONTACT_ID + "=?", mSelectionArgs1); in delete()
DLegacyApiSupport.java142 " LEFT OUTER JOIN " + Tables.PRESENCE +
143 " ON (" + Tables.PRESENCE + "." + StatusUpdates.DATA_ID + "=" +
145 " FROM " + Tables.PRESENCE +
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java292 + StatusUpdates.PRESENCE + ", " in AbstractContactAggregator()
295 + StatusUpdates.PRESENCE + "," in AbstractContactAggregator()
297 + " FROM " + Tables.PRESENCE in AbstractContactAggregator()
299 + " (" + StatusUpdates.PRESENCE in AbstractContactAggregator()
302 + "MAX (" + StatusUpdates.PRESENCE in AbstractContactAggregator()
304 + " FROM " + Tables.PRESENCE in AbstractContactAggregator()
376 "UPDATE " + Tables.PRESENCE + in AbstractContactAggregator()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsDatabaseHelperUpgradeTest.java543 new TableColumn(StatusUpdates.PRESENCE, INTEGER, false, null),
549 new TableColumn(StatusUpdates.PRESENCE, INTEGER, false, null),
579 new TableListEntry(Tables.PRESENCE, PRESENCE_COLUMNS),
DContactsProvider2Test.java448 Data.PRESENCE, in testDataProjection()
538 Data.PRESENCE, in testDistinctDataProjection()
622 Data.PRESENCE, in testEntityProjection()
955 StatusUpdates.PRESENCE, in testStatusUpdatesProjection()
1140 values.putNull(Contacts.Entity.PRESENCE); in assertEntityRows()
1157 values.put(Contacts.Entity.PRESENCE, StatusUpdates.IDLE); in assertEntityRows()
1175 values.putNull(Contacts.Entity.PRESENCE); in assertEntityRows()
4971 values.put(StatusUpdates.PRESENCE, StatusUpdates.INVISIBLE); in testStatusUpdateInsert()
5059 StatusUpdates.PRESENCE, StatusUpdates.STATUS}, in testStatusUpdateMatchingImOrEmail()
5114 values.put(StatusUpdates.PRESENCE, "presence_test"); in testStatusUpdateUpdateAndDelete()
[all …]
DBaseContactsProvider2Test.java460 values.put(StatusUpdates.PRESENCE, presence); in insertStatusUpdate()
/packages/apps/Contacts/src/com/android/contacts/util/
DDataStatus.java77 mPresence = getInt(cursor, Data.PRESENCE, -1); in fromCursor()
/packages/apps/Contacts/src/com/android/contacts/model/
DContactLoader.java173 Data.PRESENCE,
252 public static final int PRESENCE = 51; field in ContactLoader.ContactQuery
489 if (!cursor.isNull(ContactQuery.PRESENCE) in loadContactEntity()
/packages/apps/Dialer/java/com/android/contacts/common/model/
DContactLoader.java840 public static final int PRESENCE = 51; field in ContactLoader.ContactQuery
907 Data.PRESENCE,
/packages/apps/Contacts/tests/src/com/android/contacts/model/
DContactLoaderTest.java336 Data.PRESENCE, Data.CHAT_CAPABILITY, in fetchAllData()