Home | History | Annotate | Download | only in accounts

Lines Matching refs:accounts

17 package com.android.tv.settings.accounts;
26 import android.accounts.Account;
27 import android.accounts.AccountManager;
28 import android.accounts.OnAccountsUpdateListener;
137 public void onAccountsUpdated(Account[] accounts) {
138 mAccounts = accounts;
139 loadSyncActions(accounts);
194 private void loadSyncActions(Account[] accounts) {
195 new LoadActionsTask().execute(accounts);
198 private ArrayList<Action> getActions(Account[] accounts) {
230 for (int i = 0, n = accounts.length; i < n; i++) {
231 final Account account = accounts[i];