Home | History | Annotate | Download | only in adapter

Lines Matching defs:serverId

269      * @param serverId The server id for the folder we are interested in.
270 * @return A cursor for the folder specified by serverId for this account.
272 private Cursor getServerIdCursor(final String serverId) {
273 mBindArguments[0] = serverId;
288 final String serverId = getValue();
289 // Find the mailbox in this account with the given serverId
290 final Cursor c = getServerIdCursor(serverId);
293 LogUtils.d(TAG, "Deleting %s", serverId);
370 for (String serverId: mSyncOptionsMap.keySet()) {
371 SyncOptions options = mSyncOptionsMap.get(serverId);
374 mBindArguments[0] = serverId;
387 * @param serverId The new mailbox's server id.
393 private void addMailboxOp(final String name, final String serverId,
399 cv.put(MailboxColumns.SERVER_ID, serverId);
449 String serverId = null;
468 serverId = getValue();
475 if (name != null && serverId != null && parentId != null) {
481 addMailboxOp(name, serverId, parentId, mailboxType, true);
492 String serverId = null;
498 serverId = getValue();
512 // serverId is required, but let's be careful just the same
513 if (serverId != null && (displayName != null || parentId != null)) {
514 final Cursor c = getServerIdCursor(serverId);
516 // If we find the mailbox (using serverId), make the change
518 LogUtils.d(TAG, "Updating %s", serverId);