Searched defs:realm (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java373 * @param realm the realm for which authentication is required
377 HttpAuthHandler handler, String host, String realm) {
460 * @param realm The account realm used to look up accounts.
466 public void onReceivedLoginRequest(WebView view, String realm, argument
376 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
H A DWebViewProvider.java96 public void setHttpAuthUsernamePassword(String host, String realm, argument
99 public String[] getHttpAuthUsernamePassword(String host, String realm); argument
H A DWebView.java743 * Stores HTTP authentication credentials for a given host and realm. This
748 * @param realm the realm to which the credentials apply
755 public void setHttpAuthUsernamePassword(String host, String realm, argument
758 mProvider.setHttpAuthUsernamePassword(host, realm, username, password);
762 * Retrieves HTTP authentication credentials for a given host and realm.
767 * @param realm the realm to which the credentials apply
775 public String[] getHttpAuthUsernamePassword(String host, String realm) { argument
777 return mProvider.getHttpAuthUsernamePassword(host, realm);
[all...]
/frameworks/base/obex/javax/obex/
H A DHeaderSet.java664 * Sets the authentication challenge header. The <code>realm</code> will be
667 * <code>realm</code> is application dependent.
668 * @param realm a short description that describes what password to use; if
669 * <code>null</code> no realm will be sent in the authentication
678 public void createAuthenticationChallenge(String realm, boolean userID, boolean access) argument
689 mAuthChall = ObexHelper.computeAuthenticationChallenge(nonce, realm, access, userID);
H A DObexHelper.java989 * @param realm a short description that describes what password to use
996 * if the realm can not be encoded in less then 255 bytes
999 public static byte[] computeAuthenticationChallenge(byte[] nonce, String realm, boolean access, argument
1017 * byte 21: 0x02 - the tag for authentication realm; only included if
1018 * an authentication realm is specified
1019 * byte 22: the length of the authentication realm; only included if
1020 * the authentication realm is specified
1021 * byte 23: the encoding scheme of the authentication realm; we will use
1023 * byte 24 & up: the realm if one is specified.
1025 if (realm
[all...]
/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
H A DCredential.java38 public Credential(long ctime, long expTime, String realm, boolean checkAAACert, argument
43 mRealm = realm;
66 public Credential(long ctime, long expTime, String realm, boolean checkAAACert, argument
70 mRealm = realm;
86 public Credential(long ctime, long expTime, String realm, boolean checkAAACert, argument
90 mRealm = realm;
/frameworks/base/packages/Osu/src/com/android/hotspot2/utils/
H A DHTTPRequest.java100 String realm = itemMap.remove("realm");
102 if (realm == null || nonceText == null) {
103 throw new IOException("realm and/or nonce missing: '" + authRequestLine + "'");
115 * A1 = unq(username-value) ":" unq(realm-value) ":" passwd
134 byte[] a1 = hash(userName, realm, passwordString);
141 .append("realm=\"").append(realm).append("\", ")
261 // WWW-Authenticate: Digest realm="wi-fi.org", qop="auth",
265 // realm
283 test(String user, String realm, String password, String method, String path, String nonce, String cnonce, String nc, String qop, String expect) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
H A DCredential.java47 public Credential(long ctime, long expTime, String realm, boolean checkAAACert, argument
52 mRealm = realm;
75 public Credential(long ctime, long expTime, String realm, boolean checkAAACert, argument
79 mRealm = realm;
95 public Credential(long ctime, long expTime, String realm, boolean checkAAACert, argument
99 mRealm = realm;
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
H A DWebView.java85 public void setHttpAuthUsernamePassword(String host, String realm, argument
89 public String[] getHttpAuthUsernamePassword(String host, String realm) { argument
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiEnterpriseConfig.java113 public static final String REALM_KEY = "realm";
923 * Set realm for passpoint credential; realm identifies a set of networks where your
925 * @param realm the realm
927 public void setRealm(String realm) { argument
928 setFieldValue(REALM_KEY, realm, "");
932 * Get realm for passpoint credential; see {@link #setRealm(String)} for more information
933 * @return the realm

Completed in 375 milliseconds