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));
303 final long accountId;
307 // If the UUID is invalid, accountId will be NO_ACCOUNT.
308 accountId = Account.getAccountIdFromUuid(context, inputUuid);
314 accountId = inputAccountId;
316 accountId = Account.NO_ACCOUNT;
319 // Neither an accountID or a UUID is specified.
329 accountId = (lastUsedId == Account.NO_ACCOUNT)
333 if (accountId != Account.NO_ACCOUNT) {
335 return accountId;
411 public void onMailboxNotFound(long accountId) {
417 public void onAccountSecurityHold(long accountId) {
420 ActivityHelper.showSecurityHoldDialog(Welcome.this, accountId);
425 public void onMailboxFound(long accountId, long mailboxId) {