Home
last modified time | relevance | path

Searched refs:realm (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/core/java/android/webkit/
DHttpAuthHandlerImpl.java265 String realm = loader.realm(); in processNextLoader() local
267 proxy.onReceivedHttpAuthRequest(this, hostname, realm); in processNextLoader()
276 String host, String realm, String username, String password) { in onReceivedCredentials() argument
278 proxy.onReceivedHttpAuthCredentials(host, realm, username, password); in onReceivedCredentials()
DWebViewClient.java245 HttpAuthHandler handler, String host, String realm) { in onReceivedHttpAuthRequest() argument
299 public void onReceivedLoginRequest(WebView view, String realm, in onReceivedLoginRequest() argument
DCallbackProxy.java337 String realm = msg.getData().getString("realm"); in handleMessage() local
339 host, realm); in handleMessage()
795 String realm = msg.getData().getString("realm"); in handleMessage() local
799 host, realm, username, password); in handleMessage()
817 String realm = msg.getData().getString("realm"); in handleMessage() local
820 mWebViewClient.onReceivedLoginRequest(mWebView, realm, in handleMessage()
1108 void onReceivedLoginRequest(String realm, String account, String args) { in onReceivedLoginRequest() argument
1116 bundle.putString("realm", realm); in onReceivedLoginRequest()
1184 public void onReceivedHttpAuthCredentials(String host, String realm, in onReceivedHttpAuthCredentials() argument
1188 msg.getData().putString("realm", realm); in onReceivedHttpAuthCredentials()
DWebViewDatabase.java996 void setHttpAuthUsernamePassword(String host, String realm, String username, in setHttpAuthUsernamePassword() argument
998 if (host == null || realm == null || !checkInitialized()) { in setHttpAuthUsernamePassword()
1005 c.put(HTTPAUTH_REALM_COL, realm); in setHttpAuthUsernamePassword()
1022 String[] getHttpAuthUsernamePassword(String host, String realm) { in getHttpAuthUsernamePassword() argument
1023 if (host == null || realm == null || !checkInitialized()){ in getHttpAuthUsernamePassword()
1037 columns, selection, new String[] { host, realm }, null, in getHttpAuthUsernamePassword()
DBrowserFrame.java1131 final int handle, String host, String realm, final boolean useCachedCredentials, in didReceiveAuthenticationChallenge() argument
1156 mCallbackProxy.onReceivedHttpAuthRequest(handler, host, realm); in didReceiveAuthenticationChallenge()
1291 private void autoLogin(String realm, String account, String args) { in autoLogin() argument
1292 mCallbackProxy.onReceivedLoginRequest(realm, account, args); in autoLogin()
DLoadListener.java799 String realm() { in realm() method in LoadListener
876 String realm = mAuthHeader.getRealm(); in makeAuthResponse() local
883 realm, nonce, qop, algorithm, opaque); in makeAuthResponse()
DWebView.java1553 public void setHttpAuthUsernamePassword(String host, String realm, in setHttpAuthUsernamePassword() argument
1556 mDatabase.setHttpAuthUsernamePassword(host, realm, username, password); in setHttpAuthUsernamePassword()
1568 public String[] getHttpAuthUsernamePassword(String host, String realm) { in getHttpAuthUsernamePassword() argument
1570 return mDatabase.getHttpAuthUsernamePassword(host, realm); in getHttpAuthUsernamePassword()
/frameworks/base/obex/javax/obex/
DObexSession.java80 String realm = null; in handleAuthChall() local
93 realm = new String(realmString, "ISO8859_1"); in handleAuthChall()
101 realm = ObexHelper.convertToUnicode(realmString, false); in handleAuthChall()
126 .onAuthenticationChallenge(realm, isUserIDRequired, isFullAccess); in handleAuthChall()
DObexHelper.java947 public static byte[] computeAuthenticationChallenge(byte[] nonce, String realm, boolean access, in computeAuthenticationChallenge() argument
973 if (realm == null) { in computeAuthenticationChallenge()
976 if (realm.length() >= 255) { in computeAuthenticationChallenge()
979 authChall = new byte[24 + realm.length()]; in computeAuthenticationChallenge()
981 authChall[22] = (byte)(realm.length() + 1); in computeAuthenticationChallenge()
983 System.arraycopy(realm.getBytes("ISO8859_1"), 0, authChall, 24, realm.length()); in computeAuthenticationChallenge()
DHeaderSet.java599 public void createAuthenticationChallenge(String realm, boolean userID, boolean access) in createAuthenticationChallenge() argument
607 mAuthChall = ObexHelper.computeAuthenticationChallenge(nonce, realm, access, userID); in createAuthenticationChallenge()
/frameworks/base/core/java/android/net/http/
DRequestHandle.java239 String realm, in setupDigestAuthResponse() argument
246 username, password, realm, nonce, QOP, algorithm, opaque); in setupDigestAuthResponse()
298 String realm, in computeDigestAuthResponse() argument
306 Assert.assertNotNull(realm); in computeDigestAuthResponse()
308 String A1 = username + ":" + realm + ":" + password; in computeDigestAuthResponse()
318 response += "realm=" + doubleQuote(realm) + ", "; in computeDigestAuthResponse()
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
DWebView.java85 public void setHttpAuthUsernamePassword(String host, String realm, in setHttpAuthUsernamePassword() argument
89 public String[] getHttpAuthUsernamePassword(String host, String realm) { in getHttpAuthUsernamePassword() argument
/frameworks/base/voip/java/com/android/server/sip/
DSipSessionGroup.java956 String realm = getRealmFromResponse(response); in crossDomainAuthenticationRequired() local
957 if (realm == null) realm = ""; in crossDomainAuthenticationRequired()
958 return !mLocalProfile.getSipDomain().trim().equals(realm.trim()); in crossDomainAuthenticationRequired()
964 challengedTransaction, String realm) { in getAccountManager()
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
DLayoutTestsExecutor.java171 String host, String realm) {
173 String[] credentials = view.getHttpAuthUsernamePassword(host, realm);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
DReliabilityTestActivity.java216 String realm) { in onReceivedHttpAuthRequest() argument
DTestShellActivity.java620 String host, String realm) {
622 String[] credentials = view.getHttpAuthUsernamePassword(host, realm);