HomeSort by relevance Sort by last modified time
    Searched defs:authInfo (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/net/
WebAddress.java 130 String authInfo = "";
132 authInfo = mAuthInfo + "@";
135 return mScheme + "://" + authInfo + mHost + port + mPath;
170 public void setAuthInfo(String authInfo) {
171 mAuthInfo = authInfo;
  /frameworks/base/core/java/android/accounts/
ChooseAccountTypeActivity.java 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);
    [all...]

Completed in 184 milliseconds