Home | History | Annotate | Download | only in adapter

Lines Matching defs:serverId

342         public void addData(String serverId, ContactOperations ops, Entity entity)
368 ops.newContact(serverId);
672 String serverId = null;
676 serverId = getValue();
679 addData(serverId, ops, null);
687 private Cursor getServerIdCursor(String serverId) {
688 mBindArgument[0] = serverId;
703 String serverId = getValue();
704 // Find the message in this mailbox with the given serverId
705 Cursor c = getServerIdCursor(serverId);
708 userLog("Deleting ", serverId);
737 String serverId = null;
742 serverId = getValue();
743 Cursor c = getServerIdCursor(serverId);
756 userLog("Changing contact ", serverId);
763 addData(serverId, ops, entity);
815 String serverId = null;
821 serverId = getValue();
835 if (clientId == null || serverId == null) return;
840 cv.put(RawContacts.SOURCE_ID, serverId);
848 userLog("New contact " + clientId + " was given serverId: " + serverId);
856 String serverId = null;
861 serverId = getValue();
870 if (serverId != null && status != null) {
871 userLog("Changed contact " + serverId + " failed with status: " + status);
957 public void newContact(String serverId) {
961 values.put(RawContacts.SOURCE_ID, serverId);
1801 String serverId = entityValues.getAsString(RawContacts.SOURCE_ID);
1808 if (serverId == null) {
1821 userLog("Deleting contact with serverId: ", serverId);
1822 s.start(Tags.SYNC_DELETE).data(Tags.SYNC_SERVER_ID, serverId).end();
1826 userLog("Upsync change to contact with serverId: " + serverId);
1827 s.start(Tags.SYNC_CHANGE).data(Tags.SYNC_SERVER_ID, serverId);