Home | History | Annotate | Download | only in accounts

Lines Matching refs:authInfo

48     private HashMap<String, AuthInfo> mTypeToAuthenticatorInfo = new HashMap<String, AuthInfo>();
49 private ArrayList<AuthInfo> mAuthenticatorInfosToDisplay;
76 mAuthenticatorInfosToDisplay = new ArrayList<AuthInfo>(mTypeToAuthenticatorInfo.size());
77 for (Map.Entry<String, AuthInfo> entry: mTypeToAuthenticatorInfo.entrySet()) {
79 final AuthInfo info = entry.getValue();
149 AuthInfo authInfo = new AuthInfo(desc, name, icon);
150 mTypeToAuthenticatorInfo.put(desc.type, authInfo);
154 private static class AuthInfo {
159 AuthInfo(AuthenticatorDescription desc, String name, Drawable drawable) {
171 private static class AccountArrayAdapter extends ArrayAdapter<AuthInfo> {
173 private ArrayList<AuthInfo> mInfos;
176 ArrayList<AuthInfo> infos) {