Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsDatabaseHelper.java161 public static final String PRESENCE = "presence"; field
639 String CONCRETE_PRESENCE = Tables.STATUS_UPDATES + "." + StatusUpdates.PRESENCE;
654 String CONCRETE_PRESENCE = ALIAS + "." + StatusUpdates.PRESENCE;
1102 db.execSQL("DELETE FROM " + Tables.PRESENCE + ";"); in onOpen()
1141 db.execSQL("CREATE TABLE IF NOT EXISTS " + Tables.PRESENCE + " ("+ in createPresenceTables()
1149 StatusUpdates.PRESENCE + " INTEGER," + in createPresenceTables()
1156 + Tables.PRESENCE + " (" + PresenceColumns.RAW_CONTACT_ID + ");"); in createPresenceTables()
1158 + Tables.PRESENCE + " (" + PresenceColumns.CONTACT_ID + ");"); in createPresenceTables()
1164 StatusUpdates.PRESENCE + " INTEGER," + in createPresenceTables()
1168 db.execSQL("CREATE TRIGGER IF NOT EXISTS " + Tables.PRESENCE + "_deleted" in createPresenceTables()
[all …]
DContactsProvider2.java704 Tables.AGGREGATED_PRESENCE + "." + StatusUpdates.PRESENCE)
772 Tables.AGGREGATED_PRESENCE + '.' + StatusUpdates.PRESENCE)
788 .add(Data.PRESENCE, Tables.PRESENCE + "." + StatusUpdates.PRESENCE)
789 .add(Data.CHAT_CAPABILITY, Tables.PRESENCE + "." + StatusUpdates.CHAT_CAPABILITY)
1123 .add(StatusUpdates.PRESENCE)
1189 " FROM " + Tables.STATUS_UPDATES + " LEFT OUTER JOIN " + Tables.PRESENCE +
3461 final String presence = inputValues.getAsString(StatusUpdates.PRESENCE); in insertStatusUpdate()
3480 values.put(StatusUpdates.PRESENCE, presence); in insertStatusUpdate()
3485 db.replace(Tables.PRESENCE, null, values); in insertStatusUpdate()
3913 db.delete(Tables.PRESENCE, PresenceColumns.RAW_CONTACT_ID + "=" + rawContactId, null); in deleteRawContact()
[all …]
DGlobalSearchSupport.java67 "(SELECT " + StatusUpdates.PRESENCE +
DDataRowHandler.java325 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/experimental/LoaderApp/src/com/android/loaderapp/model/
DContactLoader.java52 Data.STATUS_LABEL, Data.STATUS_TIMESTAMP, Data.PRESENCE,
79 Cursor cursor = resolver.query(dataUri, StatusQuery.PROJECTION, StatusUpdates.PRESENCE in loadInBackground()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java291 + StatusUpdates.PRESENCE + ", " in AbstractContactAggregator()
294 + StatusUpdates.PRESENCE + "," in AbstractContactAggregator()
296 + " FROM " + Tables.PRESENCE in AbstractContactAggregator()
298 + " (" + StatusUpdates.PRESENCE in AbstractContactAggregator()
301 + "MAX (" + StatusUpdates.PRESENCE in AbstractContactAggregator()
303 + " FROM " + Tables.PRESENCE in AbstractContactAggregator()
375 "UPDATE " + Tables.PRESENCE + in AbstractContactAggregator()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsDatabaseHelperUpgradeTest.java567 new TableColumn(StatusUpdates.PRESENCE, INTEGER, false, null),
573 new TableColumn(StatusUpdates.PRESENCE, INTEGER, false, null),
605 new TableListEntry(Tables.PRESENCE, PRESENCE_COLUMNS),
DContactsProvider2Test.java428 Data.PRESENCE, in testDataProjection()
516 Data.PRESENCE, in testDistinctDataProjection()
598 Data.PRESENCE, in testEntityProjection()
925 StatusUpdates.PRESENCE, in testStatusUpdatesProjection()
1111 values.putNull(Contacts.Entity.PRESENCE); in assertEntityRows()
1128 values.put(Contacts.Entity.PRESENCE, StatusUpdates.IDLE); in assertEntityRows()
1146 values.putNull(Contacts.Entity.PRESENCE); in assertEntityRows()
5412 values.put(StatusUpdates.PRESENCE, StatusUpdates.INVISIBLE); in testStatusUpdateInsert()
5500 StatusUpdates.PRESENCE, StatusUpdates.STATUS}, in testStatusUpdateMatchingImOrEmail()
5555 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/model/
DContactLoader.java178 Data.PRESENCE,
260 public static final int PRESENCE = 51; field in ContactLoader.ContactQuery
499 if (!cursor.isNull(ContactQuery.PRESENCE) in loadContactEntity()
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
DDataStatus.java75 mPresence = getInt(cursor, Data.PRESENCE, -1); in fromCursor()
/packages/apps/Contacts/src/com/android/contacts/util/
DDataStatus.java77 mPresence = getInt(cursor, Data.PRESENCE, -1); in fromCursor()
/packages/apps/Dialer/java/com/android/contacts/common/model/
DContactLoader.java838 public static final int PRESENCE = 51; field in ContactLoader.ContactQuery
905 Data.PRESENCE,
/packages/apps/Contacts/tests/src/com/android/contacts/model/
DContactLoaderTest.java340 Data.PRESENCE, Data.CHAT_CAPABILITY, in fetchAllData()