HomeSort by relevance Sort by last modified time
    Searched refs:accountId (Results 26 - 39 of 39) sorted by null

12

  /packages/apps/Email/src/com/android/exchange/
EasOutboxService.java 222 * @param accountId the accountId for the sending account
225 public static void sendMessage(Context context, long accountId, Message msg) {
226 Mailbox mailbox = Mailbox.restoreMailboxOfType(context, accountId, Mailbox.TYPE_OUTBOX);
229 msg.mAccountKey = accountId;
SyncManager.java 270 public void syncMailboxListStatus(long accountId, int statusCode, int progress)
274 cb.syncMailboxListStatus(accountId, statusCode, progress);
343 public void updateFolderList(long accountId) throws RemoteException {
344 reloadFolderList(SyncManager.this, accountId, false);
347 public void hostChanged(long accountId) throws RemoteException {
362 } else if (m.mAccountKey == accountId) {
372 syncManager.stopAccountSyncs(accountId, true);
389 public boolean createFolder(long accountId, String name) throws RemoteException {
393 public boolean deleteFolder(long accountId, String name) throws RemoteException {
397 public boolean renameFolder(long accountId, String oldName, String newName
    [all...]
EasSyncService.java     [all...]
  /packages/apps/Email/src/com/android/email/activity/
MailboxList.java 98 * @param accountId the account to view
100 public static void actionHandleAccount(Context context, long accountId) {
103 intent.putExtra(EXTRA_ACCOUNT_ID, accountId);
337 public LoadMailboxesTask(long accountId) {
338 mAccountKey = accountId;
537 public void serviceCheckMailCallback(MessagingException result, long accountId,
541 public void sendMailCallback(MessagingException result, long accountId, long messageId,
543 if (accountId == mAccountId) {
MessageCompose.java 194 * @param accountId
196 public static void actionCompose(Context context, long accountId) {
199 i.putExtra(EXTRA_ACCOUNT_ID, accountId);
213 * @param accountId
216 public static boolean actionCompose(Context context, String uriString, long accountId) {
221 i.putExtra(EXTRA_ACCOUNT_ID, accountId);
272 long accountId = intent.getLongExtra(EXTRA_ACCOUNT_ID, -1);
273 if (accountId == -1) {
274 accountId = Account.getDefaultAccountId(this);
276 if (accountId == -1)
    [all...]
MessageView.java     [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupBasics.java 133 public static void actionAccountCreateFinished(Activity fromActivity, long accountId) {
137 i.putExtra(AccountSetupBasics.ACTION_START_AT_MESSAGE_LIST, accountId);
152 long accountId = intent.getLongExtra(ACTION_START_AT_MESSAGE_LIST, -1);
153 if (accountId >= 0) {
155 MessageList.actionHandleAccount(this, accountId, Mailbox.TYPE_INBOX);
454 // From now on we'll only pass the accountId around.
AccountSettings.java 95 public static void actionSettings(Activity fromActivity, long accountId) {
97 i.putExtra(EXTRA_ACCOUNT_ID, accountId);
114 // If there's no accountId, we're done
  /packages/apps/Email/tests/src/com/android/email/
LegacyConversionsTests.java 210 final long accountId = 1;
215 "local-message", accountId, mailboxId, false, true, mProviderContext);
221 "local-message", accountId, mailboxId, false, true, mProviderContext);
264 final long accountId = 1;
267 "local-message", accountId, mailboxId, false, true, mProviderContext);
300 final long accountId = 1;
303 "local-upgrade", accountId, mailboxId, false, true, mProviderContext);
    [all...]
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 90 long accountId, long mailboxId) throws MessagingException {
140 localMessage.mAccountKey = accountId;
437 long accountId) throws MessagingException, IOException {
443 File saveIn = AttachmentProvider.getAttachmentDirectory(context, accountId);
447 File saveAs = AttachmentProvider.getAttachmentFilename(context, accountId,
457 accountId, attachmentId).toString();
    [all...]
Utility.java 423 long accountId = c2.getLong(Account.ID_PROJECTION_COLUMN);
424 if (accountId != allowAccountId) {
425 Account account = Account.restoreAccountWithId(context, accountId);
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageComposeTests.java 125 long accountId = Account.getDefaultAccountId(context);
126 if (accountId == -1) {
131 accountId = account.mId;
132 mCreatedAccountId = accountId;
134 Account account = Account.restoreAccountWithId(context, accountId);
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailContent.java     [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 190 * @param accountId
    [all...]

Completed in 630 milliseconds

12