/frameworks/base/core/java/android/webkit/ |
D | HttpAuthHandlerImpl.java | 265 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()
|
D | WebViewClient.java | 245 HttpAuthHandler handler, String host, String realm) { in onReceivedHttpAuthRequest() argument 299 public void onReceivedLoginRequest(WebView view, String realm, in onReceivedLoginRequest() argument
|
D | CallbackProxy.java | 337 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()
|
D | WebViewDatabase.java | 996 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()
|
D | BrowserFrame.java | 1131 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()
|
D | LoadListener.java | 799 String realm() { in realm() method in LoadListener 876 String realm = mAuthHeader.getRealm(); in makeAuthResponse() local 883 realm, nonce, qop, algorithm, opaque); in makeAuthResponse()
|
D | WebView.java | 1553 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/ |
D | ObexSession.java | 80 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()
|
D | ObexHelper.java | 947 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()
|
D | HeaderSet.java | 599 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/ |
D | RequestHandle.java | 239 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/ |
D | WebView.java | 85 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/ |
D | SipSessionGroup.java | 956 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/ |
D | LayoutTestsExecutor.java | 171 String host, String realm) { 173 String[] credentials = view.getHttpAuthUsernamePassword(host, realm);
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
D | ReliabilityTestActivity.java | 216 String realm) { in onReceivedHttpAuthRequest() argument
|
D | TestShellActivity.java | 620 String host, String realm) { 622 String[] credentials = view.getHttpAuthUsernamePassword(host, realm);
|