Home | History | Annotate | Download | only in activity

Lines Matching defs:accountId

113      * Create an Intent to open email activity. If <code>accountId</code> is not -1, the
116 public static Intent createOpenAccountInboxIntent(Context context, long accountId) {
119 IntentUtilities.setAccountId(b, accountId);
126 public static Intent createOpenMessageIntent(Context context, long accountId,
130 IntentUtilities.setAccountId(b, accountId);
139 public static void actionOpenAccountInbox(Activity fromActivity, long accountId) {
140 fromActivity.startActivity(createOpenAccountInboxIntent(fromActivity, accountId));
301 final long accountId;
305 // If the UUID is invalid, accountId will be NO_ACCOUNT.
306 accountId = Account.getAccountIdFromUuid(context, inputUuid);
312 accountId = inputAccountId;
314 accountId = Account.NO_ACCOUNT;
317 // Neither an accountID or a UUID is specified.
327 accountId = (lastUsedId == Account.NO_ACCOUNT)
331 if (accountId != Account.NO_ACCOUNT) {
333 return accountId;
409 public void onMailboxNotFound(long accountId) {
415 public void onAccountSecurityHold(long accountId) {
418 ActivityHelper.showSecurityHoldDialog(Welcome.this, accountId);
423 public void onMailboxFound(long accountId, long mailboxId) {