Searched refs:realm (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/obex/javax/obex/
H A DObexSession.java73 * 0x02 is the realm, which provides a description of which user name
80 String realm = null;
93 realm = new String(realmString, "ISO8859_1");
101 realm = ObexHelper.convertToUnicode(realmString, false);
126 .onAuthenticationChallenge(realm, isUserIDRequired, isFullAccess);
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...]
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);
/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/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.java85 public void setHttpAuthUsernamePassword(String host, String realm, argument
88 public String[] getHttpAuthUsernamePassword(String host, String realm); argument
H A DWebView.java655 * Stores HTTP authentication credentials for a given host and realm. This
660 * @param realm the realm to which the credentials apply
667 public void setHttpAuthUsernamePassword(String host, String realm, argument
671 mProvider.setHttpAuthUsernamePassword(host, realm, username, password);
675 * Retrieves HTTP authentication credentials for a given host and realm.
680 * @param realm the realm to which the credentials apply
688 public String[] getHttpAuthUsernamePassword(String host, String realm) { argument
690 return mProvider.getHttpAuthUsernamePassword(host, realm);
[all...]
/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.java753 public void onReceivedHttpAuthRequest(AwHttpAuthHandler handler, String host, String realm) { argument
757 new AwHttpAuthHandlerAdapter(handler), host, realm);
848 public void onReceivedLoginRequest(String realm, String account, String args) { argument
850 if (TRACE) Log.d(TAG, "onReceivedLoginRequest=" + realm);
851 mWebViewClient.onReceivedLoginRequest(mWebView, realm, account, args);
H A DWebViewChromium.java455 public void setHttpAuthUsernamePassword(final String host, final String realm, argument
461 setHttpAuthUsernamePassword(host, realm, username, password);
466 mAwContents.setHttpAuthUsernamePassword(host, realm, username, password);
470 public String[] getHttpAuthUsernamePassword(final String host, final String realm) { argument
476 return getHttpAuthUsernamePassword(host, realm);
481 return mAwContents.getHttpAuthUsernamePassword(host, realm);
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionGroup.java1006 String realm = getRealmFromResponse(response);
1007 if (realm == null) realm = "";
1008 return !mLocalProfile.getSipDomain().trim().equals(realm.trim());
1015 challengedTransaction, String realm) {

Completed in 2528 milliseconds