HomeSort by relevance Sort by last modified time
    Searched refs:amAccount (Results 1 - 13 of 13) sorted by null

  /packages/apps/Exchange/src/com/android/exchange/service/
PingSyncSynchronizer.java 190 final android.accounts.Account amAccount =
193 mPingTask = new PingTask(synchronizer.getContext(), account, amAccount,
208 private boolean pingEnd(final android.accounts.Account amAccount) {
230 EasPing.requestPing(amAccount);
260 final android.accounts.Account amAccount =
267 mPingTask = new PingTask(synchronizer.getContext(), account, amAccount,
281 ContentResolver.addPeriodicSync(amAccount, EmailContent.AUTHORITY, extras,
394 public void pingEnd(final long accountId, final android.accounts.Account amAccount) {
403 if (accountState.pingEnd(amAccount)) {
PingTask.java 40 final android.accounts.Account amAccount,
43 mOperation = new EasPing(context, account, amAccount);
EasService.java 382 final android.accounts.Account amAccount =
385 EasPing.requestPing(amAccount);
445 final android.accounts.Account amAccount = new android.accounts.Account(
448 final Set<String> authsToSync = getAuthoritiesToSync(amAccount, AUTHORITIES_TO_SYNC);
  /packages/apps/Email/provider_src/com/android/email/service/
EmailBroadcastProcessorService.java 161 for (android.accounts.Account amAccount: amAccounts) {
162 EmailServiceUtils.updateAccountManagerType(this, amAccount, protocolMap);
168 * @param amAccount The account for which to disable syncs.
171 private static void removePeriodicSyncs(final android.accounts.Account amAccount,
174 ContentResolver.getPeriodicSyncs(amAccount, authority);
176 ContentResolver.removePeriodicSync(amAccount, authority, sync.extras);
189 for (android.accounts.Account amAccount : amAccounts) {
191 removePeriodicSyncs(amAccount, EmailContent.AUTHORITY);
192 removePeriodicSyncs(amAccount, CalendarContract.AUTHORITY);
193 removePeriodicSyncs(amAccount, ContactsContract.AUTHORITY)
    [all...]
EmailServiceUtils.java 329 android.accounts.Account amAccount, final Map<String, String> protocolMap) {
332 AccountColumns.EMAIL_ADDRESS + "=?", new String[] { amAccount.name }, null);
352 LogUtils.w(LogUtils.TAG, "Converting %s to %s", amAccount.name, newProtocol);
373 boolean email = ContentResolver.getSyncAutomatically(amAccount,
377 email = ContentResolver.getSyncAutomatically(amAccount,
380 final boolean contacts = ContentResolver.getSyncAutomatically(amAccount,
382 final boolean calendar = ContentResolver.getSyncAutomatically(amAccount,
388 final String amName = amAccount.name;
389 final String oldType = amAccount.type;
438 .removeAccount(amAccount, null, null)
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasPing.java 94 final android.accounts.Account amAccount) {
96 mAmAccount = amAccount;
400 * @param amAccount Account that needs to ping.
402 public static void requestPing(final android.accounts.Account amAccount) {
406 ContentResolver.requestSync(amAccount, EmailContent.AUTHORITY, extras);
408 amAccount.toString(), extras.toString());
EasOperation.java 701 * @param amAccount The {@link android.accounts.Account} for the account we're pinging.
704 protected static void requestSyncForMailbox(final android.accounts.Account amAccount,
707 ContentResolver.requestSync(amAccount, EmailContent.AUTHORITY, extras);
709 amAccount.toString(), extras.toString());
    [all...]
EasFullSyncOperation.java 103 final android.accounts.Account amAccount = new android.accounts.Account(
105 mAuthsToSync = EasService.getAuthoritiesToSync(amAccount, AUTHORITIES_TO_SYNC);
  /packages/apps/Email/provider_src/com/android/email/provider/
DBHelper.java     [all...]
EmailProvider.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Account.java 81 private android.accounts.Account amAccount;
550 if (amAccount == null) {
553 amAccount = new android.accounts.Account(accountManagerName, type);
555 return amAccount;
    [all...]
  /packages/apps/Email/provider_src/com/android/email/
SecurityPolicy.java 582 final android.accounts.Account amAccount =
588 ContentResolver.requestSync(amAccount, EmailContent.AUTHORITY, extras);
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java     [all...]

Completed in 192 milliseconds