Home | History | Annotate | Download | only in adapter

Lines Matching refs:serverId

428         public void addData(String serverId, ContactOperations ops, Entity entity)
453 ops.newContact(serverId);
749 String serverId = null;
753 serverId = getValue();
756 addData(serverId, ops, null);
764 private Cursor getServerIdCursor(String serverId) {
765 mBindArgument[0] = serverId;
780 String serverId = getValue();
781 // Find the message in this mailbox with the given serverId
782 Cursor c = getServerIdCursor(serverId);
785 serverId);
814 String serverId = null;
819 serverId = getValue();
820 Cursor c = getServerIdCursor(serverId);
833 userLog("Changing contact ", serverId);
840 addData(serverId, ops, entity);
892 String serverId = null;
898 serverId = getValue();
912 if (clientId == null || serverId == null) return;
917 cv.put(RawContacts.SOURCE_ID, serverId);
925 userLog("New contact " + clientId + " was given serverId: " + serverId);
933 String serverId = null;
938 serverId = getValue();
947 if (serverId != null && status != null) {
948 userLog("Changed contact " + serverId + " failed with status: " + status);
1033 public void newContact(String serverId) {
1037 values.put(RawContacts.SOURCE_ID, serverId);
1875 String serverId = entityValues.getAsString(RawContacts.SOURCE_ID);
1882 if (serverId == null) {
1895 userLog("Deleting contact with serverId: ", serverId);
1896 s.start(Tags.SYNC_DELETE).data(Tags.SYNC_SERVER_ID, serverId).end();
1900 userLog("Upsync change to contact with serverId: " + serverId);
1901 s.start(Tags.SYNC_CHANGE).data(Tags.SYNC_SERVER_ID, serverId);