Home | History | Annotate | Download | only in contacts

Lines Matching refs:PRESENCE

592                     Tables.AGGREGATED_PRESENCE + "." + StatusUpdates.PRESENCE)
659 Tables.AGGREGATED_PRESENCE + '.' + StatusUpdates.PRESENCE)
675 .add(Data.PRESENCE, Tables.PRESENCE + "." + StatusUpdates.PRESENCE)
676 .add(Data.CHAT_CAPABILITY, Tables.PRESENCE + "." + StatusUpdates.CHAT_CAPABILITY)
1005 .add(StatusUpdates.PRESENCE)
1071 " FROM " + Tables.STATUS_UPDATES + " LEFT OUTER JOIN " + Tables.PRESENCE +
3148 // Lookup the data row to attach this presence update to
3221 if (values.containsKey(StatusUpdates.PRESENCE)) {
3238 mValues.put(StatusUpdates.PRESENCE,
3239 values.getAsString(StatusUpdates.PRESENCE));
3243 // Insert the presence update
3244 db.replace(Tables.PRESENCE, null, mValues);
3675 db.delete(Tables.PRESENCE,
3706 // delete from both tables: presence and status_updates
3714 return db.delete(Tables.PRESENCE, selection, selectionArgs);
4040 // now update the Presence table
4043 updateCount = db.update(Tables.PRESENCE, settableValues,
4115 ContactsDatabaseHelper.copyStringValue(mValues, StatusUpdates.PRESENCE, values,
4116 StatusUpdates.PRESENCE);
4712 "DELETE FROM " + Tables.PRESENCE +
7277 projection, Data.PRESENCE, Data.CHAT_CAPABILITY)) {
7278 sb.append(" LEFT OUTER JOIN " + Tables.PRESENCE +