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

/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java242 * @param realm A description to help store user credentials for future
246 HttpAuthHandler handler, String host, String realm) {
298 * @param realm The account realm used to look up accounts.
304 public void onReceivedLoginRequest(WebView view, String realm, argument
245 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
H A DWebViewDatabaseClassic.java95 private static final String HTTPAUTH_REALM_COL = "realm";
406 * @param realm The realm for the password
411 void setHttpAuthUsernamePassword(String host, String realm, String username, argument
413 if (host == null || realm == null || !checkInitialized()) {
420 c.put(HTTPAUTH_REALM_COL, realm);
430 * host+realm pair
433 * @param realm The realm the password applies to
437 String[] getHttpAuthUsernamePassword(String host, String realm) { argument
[all...]
H A DBrowserFrame.java1022 final int handle, String host, String realm, final boolean useCachedCredentials,
1047 mCallbackProxy.onReceivedHttpAuthRequest(handler, host, realm);
1201 private void autoLogin(String realm, String account, String args) { argument
1202 mCallbackProxy.onReceivedLoginRequest(realm, account, args);
1021 didReceiveAuthenticationChallenge( final int handle, String host, String realm, final boolean useCachedCredentials, final boolean suppressDialog) argument
H A DCallbackProxy.java389 String realm = msg.getData().getString("realm");
391 host, realm);
853 String realm = msg.getData().getString("realm");
857 host, realm, username, password);
875 String realm = msg.getData().getString("realm");
878 mWebViewClient.onReceivedLoginRequest(mWebView.getWebView(), realm,
1064 msg.getData().putString("realm", realmNam
1156 onReceivedLoginRequest(String realm, String account, String args) argument
1223 onReceivedHttpAuthCredentials(String host, String realm, String username, String password) argument
[all...]
H A DWebViewProvider.java81 public void setHttpAuthUsernamePassword(String host, String realm, argument
84 public String[] getHttpAuthUsernamePassword(String host, String realm); argument
H A DWebView.java601 * Sets the HTTP authentication credentials for a given host and realm.
604 * @param realm the realm for the credentials
609 public void setHttpAuthUsernamePassword(String host, String realm, argument
612 mProvider.setHttpAuthUsernamePassword(host, realm, username, password);
617 * host and realm pair
620 * @param realm the realm for which the credentials apply
624 public String[] getHttpAuthUsernamePassword(String host, String realm) { argument
626 return mProvider.getHttpAuthUsernamePassword(host, realm);
[all...]
H A DWebViewClassic.java2034 public void setHttpAuthUsernamePassword(String host, String realm, argument
2036 mDatabase.setHttpAuthUsernamePassword(host, realm, username, password);
2043 public String[] getHttpAuthUsernamePassword(String host, String realm) { argument
2044 return mDatabase.getHttpAuthUsernamePassword(host, realm);
/frameworks/base/obex/javax/obex/
H A DHeaderSet.java585 * Sets the authentication challenge header. The <code>realm</code> will be
588 * <code>realm</code> is application dependent.
589 * @param realm a short description that describes what password to use; if
590 * <code>null</code> no realm will be sent in the authentication
599 public void createAuthenticationChallenge(String realm, boolean userID, boolean access) argument
607 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/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DReliabilityTestActivity.java216 String realm) {
215 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) 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

Completed in 399 milliseconds