Searched defs:amAccount (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Exchange/src/com/android/exchange/service/
H A DPingTask.java40 final android.accounts.Account amAccount,
43 mOperation = new EasPing(context, account, amAccount);
39 PingTask(final Context context, final Account account, final android.accounts.Account amAccount, final PingSyncSynchronizer pingSyncSynchronizer) argument
H A DPingSyncSynchronizer.java166 final android.accounts.Account amAccount =
169 scheduleDelayedPing(synchronizer.getContext(), amAccount);
172 final android.accounts.Account amAccount =
175 mPingTask = new PingTask(synchronizer.getContext(), account, amAccount,
189 private boolean pingEnd(final android.accounts.Account amAccount) { argument
201 EasPing.requestPing(amAccount);
209 final android.accounts.Account amAccount) {
214 intent.putExtra(EXTRA_PING_ACCOUNT, amAccount);
228 final android.accounts.Account amAccount =
234 mPingTask = new PingTask(synchronizer.getContext(), account, amAccount,
208 scheduleDelayedPing(final Context context, final android.accounts.Account amAccount) argument
357 pingEnd(final long accountId, final android.accounts.Account amAccount) argument
[all...]
/packages/apps/Email/src/com/android/email/service/
H A DEmailBroadcastProcessorService.java161 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, argument
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, ContactsContrac
[all...]
H A DEmailServiceUtils.java329 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, nul
328 updateAccountManagerType(Context context, android.accounts.Account amAccount, final Map<String, String> protocolMap) argument
[all...]
/packages/apps/Exchange/src/com/android/exchange/eas/
H A DEasPing.java94 final android.accounts.Account amAccount) {
96 mAmAccount = amAccount;
399 * @param amAccount Account that needs to ping.
401 public static void requestPing(final android.accounts.Account amAccount) { argument
405 ContentResolver.requestSync(amAccount, EmailContent.AUTHORITY, extras);
407 amAccount.toString(), extras.toString());
93 EasPing(final Context context, final Account account, final android.accounts.Account amAccount) argument
H A DEasOperation.java740 * @param amAccount The {@link android.accounts.Account} for the account we're pinging.
743 protected static void requestSyncForMailbox(final android.accounts.Account amAccount, argument
746 ContentResolver.requestSync(amAccount, EmailContent.AUTHORITY, extras);
748 amAccount.toString(), extras.toString());
751 protected static void requestSyncForMailboxes(final android.accounts.Account amAccount, argument
758 ContentResolver.requestSync(amAccount, authority, extras);
760 amAccount.toString(), extras.toString());
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAccount.java84 private android.accounts.Account amAccount; field in class:Account
530 if (amAccount == null) {
533 amAccount = new android.accounts.Account(accountManagerName, type);
535 return amAccount;

Completed in 260 milliseconds