Home | History | Annotate | Download | only in activity

Lines Matching defs:accountId

65     private static final String ACCOUNT_ID = "accountId";
104 * @param accountId the ID of the currently viewed account
106 public static Loader<Cursor> createLoader(Context context, long accountId, long mailboxId) {
107 return new AccountsLoader(context, accountId, mailboxId, UiUtilities.useTwoPane(context));
309 AccountsLoader(Context context, long accountId, long mailboxId, boolean useTwoPane) {
314 mAccountId = accountId;
342 final long accountId = accountCursor.getLong(0);
344 mContext, accountId, Mailbox.TYPE_INBOX);
347 addRow(matrixCursor, ROW_TYPE_ACCOUNT, accountId, name, emailAddress, unread,
348 UNKNOWN_POSITION, accountId);
350 if (accountId == mAccountId) {
457 String emailAddress, int messageCount, int listPosition, long accountId) {
465 .add(accountId);
510 void setAccountMailboxInfo(Context context, long accountId, long mailboxId) {
511 mAccountId = accountId;
515 if (accountId == Account.ACCOUNT_ID_COMBINED_VIEW) {
526 ContentUris.withAppendedId(Account.CONTENT_URI, accountId),