Searched refs:realm (Results 1 - 16 of 16) 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.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...]
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);
/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java215 * @param realm the realm for which authentication is required
219 HttpAuthHandler handler, String host, String realm) {
271 * @param realm The account realm used to look up accounts.
277 public void onReceivedLoginRequest(WebView view, String realm, argument
218 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
H A DWebViewDatabaseClassic.java96 private static final String HTTPAUTH_REALM_COL = "realm";
410 * @param realm The realm for the password
415 void setHttpAuthUsernamePassword(String host, String realm, String username, argument
417 if (host == null || realm == null || !checkInitialized()) {
424 c.put(HTTPAUTH_REALM_COL, realm);
434 * host+realm pair
437 * @param realm The realm the password applies to
441 String[] getHttpAuthUsernamePassword(String host, String realm) { argument
[all...]
H A DWebViewProvider.java82 public void setHttpAuthUsernamePassword(String host, String realm, argument
85 public String[] getHttpAuthUsernamePassword(String host, String realm); argument
H A DCallbackProxy.java385 String realm = msg.getData().getString("realm");
387 host, realm);
864 String realm = msg.getData().getString("realm");
868 host, realm, username, password);
873 String realm = msg.getData().getString("realm");
876 mWebViewClient.onReceivedLoginRequest(mWebView.getWebView(), realm,
1049 msg.getData().putString("realm", realmNam
1141 onReceivedLoginRequest(String realm, String account, String args) argument
1210 onReceivedHttpAuthCredentials(String host, String realm, String username, String password) argument
[all...]
H A DBrowserFrame.java1043 final int handle, String host, String realm, final boolean useCachedCredentials,
1068 mCallbackProxy.onReceivedHttpAuthRequest(handler, host, realm);
1218 private void autoLogin(String realm, String account, String args) { argument
1219 mCallbackProxy.onReceivedLoginRequest(realm, account, args);
1042 didReceiveAuthenticationChallenge( final int handle, String host, String realm, final boolean useCachedCredentials, final boolean suppressDialog) argument
H A DWebView.java610 * Stores HTTP authentication credentials for a given host and realm. This
615 * @param realm the realm to which the credentials apply
622 public void setHttpAuthUsernamePassword(String host, String realm, argument
625 mProvider.setHttpAuthUsernamePassword(host, realm, username, password);
629 * Retrieves HTTP authentication credentials for a given host and realm.
634 * @param realm the realm to which the credentials apply
642 public String[] getHttpAuthUsernamePassword(String host, String realm) { argument
644 return mProvider.getHttpAuthUsernamePassword(host, realm);
[all...]
H A DWebViewClassic.java2062 public void setHttpAuthUsernamePassword(String host, String realm, argument
2064 mDatabase.setHttpAuthUsernamePassword(host, realm, username, password);
2071 public String[] getHttpAuthUsernamePassword(String host, String realm) { argument
2072 return mDatabase.getHttpAuthUsernamePassword(host, realm);
/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/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DReliabilityTestActivity.java216 String realm) {
215 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
H A DTestShellActivity.java637 String host, String realm) {
639 String[] credentials = view.getHttpAuthUsernamePassword(host, realm);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DLayoutTestsExecutor.java170 String host, String realm) {
172 String[] credentials = view.getHttpAuthUsernamePassword(host, realm);
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionGroup.java980 String realm = getRealmFromResponse(response);
981 if (realm == null) realm = "";
982 return !mLocalProfile.getSipDomain().trim().equals(realm.trim());
988 challengedTransaction, String realm) {

Completed in 218 milliseconds