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

/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java264 * @param realm the realm for which authentication is required
268 HttpAuthHandler handler, String host, String realm) {
352 * @param realm The account realm used to look up accounts.
358 public void onReceivedLoginRequest(WebView view, String realm, argument
267 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
H A DWebViewProvider.java87 public void setHttpAuthUsernamePassword(String host, String realm, argument
90 public String[] getHttpAuthUsernamePassword(String host, String realm); argument
H A DWebView.java661 * Stores HTTP authentication credentials for a given host and realm. This
666 * @param realm the realm to which the credentials apply
673 public void setHttpAuthUsernamePassword(String host, String realm, argument
677 mProvider.setHttpAuthUsernamePassword(host, realm, username, password);
681 * Retrieves HTTP authentication credentials for a given host and realm.
686 * @param realm the realm to which the credentials apply
694 public String[] getHttpAuthUsernamePassword(String host, String realm) { argument
696 return mProvider.getHttpAuthUsernamePassword(host, realm);
[all...]
/frameworks/base/obex/javax/obex/
H A DHeaderSet.java610 * Sets the authentication challenge header. The <code>realm</code> will be
613 * <code>realm</code> is application dependent.
614 * @param realm a short description that describes what password to use; if
615 * <code>null</code> no realm will be sent in the authentication
624 public void createAuthenticationChallenge(String realm, boolean userID, boolean access) argument
632 mAuthChall = ObexHelper.computeAuthenticationChallenge(nonce, realm, access, userID);
H A DObexHelper.java943 * @param realm a short description that describes what password to use
950 * if the realm can not be encoded in less then 255 bytes
953 public static byte[] computeAuthenticationChallenge(byte[] nonce, String realm, boolean access, argument
971 * byte 21: 0x02 - the tag for authentication realm; only included if
972 * an authentication realm is specified
973 * byte 22: the length of the authentication realm; only included if
974 * the authentication realm is specified
975 * byte 23: the encoding scheme of the authentication realm; we will use
977 * byte 24 & up: the realm if one is specified.
979 if (realm
[all...]
/frameworks/base/core/java/android/net/http/
H A DRequestHandle.java239 String realm,
246 username, password, realm, nonce, QOP, algorithm, opaque);
298 String realm,
306 Assert.assertNotNull(realm);
308 String A1 = username + ":" + realm + ":" + password;
318 response += "realm=" + doubleQuote(realm) + ", ";
236 setupDigestAuthResponse(boolean isProxy, String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
296 computeDigestAuthResponse(String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
/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/webview/chromium/java/com/android/webview/chromium/
H A DWebViewContentsClientAdapter.java757 public void onReceivedHttpAuthRequest(AwHttpAuthHandler handler, String host, String realm) { argument
761 new AwHttpAuthHandlerAdapter(handler), host, realm);
852 public void onReceivedLoginRequest(String realm, String account, String args) { argument
854 if (TRACE) Log.d(TAG, "onReceivedLoginRequest=" + realm);
855 mWebViewClient.onReceivedLoginRequest(mWebView, realm, account, args);
H A DWebViewChromium.java456 public void setHttpAuthUsernamePassword(final String host, final String realm, argument
462 setHttpAuthUsernamePassword(host, realm, username, password);
467 mAwContents.setHttpAuthUsernamePassword(host, realm, username, password);
471 public String[] getHttpAuthUsernamePassword(final String host, final String realm) { argument
477 return getHttpAuthUsernamePassword(host, realm);
482 return mAwContents.getHttpAuthUsernamePassword(host, realm);

Completed in 5876 milliseconds