/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsDatabaseHelper.java | 183 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 …]
|
D | ContactsProvider2.java | 637 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 …]
|
D | GlobalSearchSupport.java | 67 "(SELECT " + StatusUpdates.PRESENCE +
|
D | DataRowHandler.java | 320 db.delete(Tables.PRESENCE, PresenceColumns.RAW_CONTACT_ID + "=?", mSelectionArgs1); in delete()
|
D | LegacyApiSupport.java | 142 " 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/ |
D | AbstractContactAggregator.java | 292 + 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/ |
D | ContactsDatabaseHelperUpgradeTest.java | 543 new TableColumn(StatusUpdates.PRESENCE, INTEGER, false, null), 549 new TableColumn(StatusUpdates.PRESENCE, INTEGER, false, null), 579 new TableListEntry(Tables.PRESENCE, PRESENCE_COLUMNS),
|
D | ContactsProvider2Test.java | 448 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 …]
|
D | BaseContactsProvider2Test.java | 460 values.put(StatusUpdates.PRESENCE, presence); in insertStatusUpdate()
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | DataStatus.java | 77 mPresence = getInt(cursor, Data.PRESENCE, -1); in fromCursor()
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | ContactLoader.java | 173 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/ |
D | ContactLoader.java | 840 public static final int PRESENCE = 51; field in ContactLoader.ContactQuery 907 Data.PRESENCE,
|
/packages/apps/Contacts/tests/src/com/android/contacts/model/ |
D | ContactLoaderTest.java | 336 Data.PRESENCE, Data.CHAT_CAPABILITY, in fetchAllData()
|