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

/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java216 * @param realm the realm for which authentication is required
220 HttpAuthHandler handler, String host, String realm) {
272 * @param realm The account realm used to look up accounts.
278 public void onReceivedLoginRequest(WebView view, String realm, argument
219 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
H A DWebViewProvider.java84 public void setHttpAuthUsernamePassword(String host, String realm, argument
87 public String[] getHttpAuthUsernamePassword(String host, String realm); argument
H A DWebView.java615 * Stores HTTP authentication credentials for a given host and realm. This
620 * @param realm the realm to which the credentials apply
627 public void setHttpAuthUsernamePassword(String host, String realm, argument
631 mProvider.setHttpAuthUsernamePassword(host, realm, username, password);
635 * Retrieves HTTP authentication credentials for a given host and realm.
640 * @param realm the realm to which the credentials apply
648 public String[] getHttpAuthUsernamePassword(String host, String realm) { argument
650 return mProvider.getHttpAuthUsernamePassword(host, realm);
[all...]
/frameworks/base/obex/javax/obex/
H A DHeaderSet.java587 * Sets the authentication challenge header. The <code>realm</code> will be
590 * <code>realm</code> is application dependent.
591 * @param realm a short description that describes what password to use; if
592 * <code>null</code> no realm will be sent in the authentication
601 public void createAuthenticationChallenge(String realm, boolean userID, boolean access) argument
609 mAuthChall = ObexHelper.computeAuthenticationChallenge(nonce, realm, access, userID);
H A DObexHelper.java937 * @param realm a short description that describes what password to use
944 * if the realm can not be encoded in less then 255 bytes
947 public static byte[] computeAuthenticationChallenge(byte[] nonce, String realm, boolean access, argument
965 * byte 21: 0x02 - the tag for authentication realm; only included if
966 * an authentication realm is specified
967 * byte 22: the length of the authentication realm; only included if
968 * the authentication realm is specified
969 * byte 23: the encoding scheme of the authentication realm; we will use
971 * byte 24 & up: the realm if one is specified.
973 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.java669 public void onReceivedHttpAuthRequest(AwHttpAuthHandler handler, String host, String realm) { argument
673 new AwHttpAuthHandlerAdapter(handler), host, realm);
704 public void onReceivedLoginRequest(String realm, String account, String args) { argument
706 if (TRACE) Log.d(TAG, "onReceivedLoginRequest=" + realm);
707 mWebViewClient.onReceivedLoginRequest(mWebView, realm, account, args);
H A DWebViewChromium.java385 public void setHttpAuthUsernamePassword(final String host, final String realm, argument
391 setHttpAuthUsernamePassword(host, realm, username, password);
396 mAwContents.setHttpAuthUsernamePassword(host, realm, username, password);
400 public String[] getHttpAuthUsernamePassword(final String host, final String realm) { argument
406 return getHttpAuthUsernamePassword(host, realm);
411 return mAwContents.getHttpAuthUsernamePassword(host, realm);

Completed in 4808 milliseconds