Searched defs:host (Results 1 - 19 of 19) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DHttpAuthenticationDialog.java49 public HttpAuthenticationDialog(Context context, String host, String realm) { argument
51 mHost = host;
157 void onOk(String host, String realm, String username, String password); argument
H A DPageDialogsHandler.java89 void showHttpAuthentication(final Tab tab, final HttpAuthHandler handler, String host, String realm) { argument
90 mHttpAuthenticationDialog = new HttpAuthenticationDialog(mContext, host, realm);
92 public void onOk(String host, String realm, String username, String password) {
93 setHttpAuthUsernamePassword(host, realm, username, password);
111 * @param host The host for the password
117 public void setHttpAuthUsernamePassword(String host, String realm, argument
122 w.setHttpAuthUsernamePassword(host, realm, username, password);
H A DPreloadController.java148 HttpAuthHandler handler, String host,
147 onReceivedHttpAuthRequest(Tab tab, WebView view, HttpAuthHandler handler, String host, String realm) argument
H A DWebViewController.java73 final String host, final String realm);
72 onReceivedHttpAuthRequest(Tab tab, WebView view, final HttpAuthHandler handler, final String host, final String realm) argument
H A DTab.java564 * @param host The host
569 final HttpAuthHandler handler, final String host,
571 mWebViewController.onReceivedHttpAuthRequest(Tab.this, view, handler, host, realm);
929 * Ask the host application for a custom progress view to show while
998 HttpAuthHandler handler, String host, String realm) {
999 mClient.onReceivedHttpAuthRequest(view, handler, host, realm);
997 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
H A DController.java1001 final HttpAuthHandler handler, final String host,
1010 String[] credentials = view.getHttpAuthUsernamePassword(host, realm);
1021 mPageDialogsHandler.showHttpAuthentication(tab, handler, host, realm);
1000 onReceivedHttpAuthRequest(Tab tab, WebView view, final HttpAuthHandler handler, final String host, final String realm) argument
/packages/apps/Browser/tests/src/com/android/browser/
H A DTestWebViewClient.java106 HttpAuthHandler handler, String host, String realm) {
107 mWrappedClient.onReceivedHttpAuthRequest(view, handler, host, realm);
105 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DSSLSocketFactory.java285 final String host,
292 if (host == null) {
293 throw new IllegalArgumentException("Target host may not be null.");
318 remoteAddress = new InetSocketAddress(nameResolver.resolve(host), port);
320 remoteAddress = new InetSocketAddress(host, port);
327 hostnameVerifier.verify(host, sslsock);
379 final String host,
385 host,
389 hostnameVerifier.verify(host, sslSocket);
283 connectSocket( final Socket sock, final String host, final int port, final InetAddress localAddress, int localPort, final HttpParams params ) argument
377 createSocket( final Socket socket, final String host, final int port, final boolean autoClose ) argument
/packages/apps/Email/src/com/android/email/view/
H A DCertificateSelector.java49 /** The host activity. */
66 public void setHostActivity(HostCallback host) { argument
67 mHost = host;
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppTransfer.java501 private final String host; field in class:BluetoothOppTransfer.SocketConnectThread
516 public SocketConnectThread(String host, int port, int dummy) { argument
518 this.host = host;
529 this.host = null;
540 this.host = null;
571 s.connect(new InetSocketAddress(host, channel), CONNECT_WAIT_TIMEOUT);
573 Log.e(TAG, "TCP socket connect unknown host ");
/packages/apps/Email/emailcommon/src/com/android/emailcommon/
H A DVendorPolicyLoader.java50 private static final String GET_IMAP_ID_HOST = "getImapId.host";
181 * @param host the server that is being contacted (e.g. "imap.server.com")
186 public String getImapIdValues(String userName, String host, String capabilities) { argument
189 params.putString(GET_IMAP_ID_HOST, host);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DWebViewContextMenu.java82 public WebViewContextMenu(Activity host) { argument
83 mActivity = host;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
H A DAccessibleKeyboardViewProxy.java195 * @param host The host view for the provider.
199 public AccessibilityEntityProvider getAccessibilityNodeProvider(final View host) { argument
/packages/apps/CertInstaller/src/com/android/certinstaller/
H A DCertInstaller.java468 void run(CertInstaller host); argument
479 public void run(CertInstaller host) { argument
484 host.extractPkcs12InBackground(mPassword);
489 public void run(CertInstaller host) { argument
490 host.mNextAction = null;
491 host.installOthers();
502 public void run(CertInstaller host) { argument
503 host.onExtractionDone(mSuccess);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DHostAuth.java412 public void setConnection(String scheme, String host, int port) { argument
427 setConnection(protocol, host, port, flags, clientCertAlias);
/packages/apps/Email/src/com/android/email/mail/store/
H A DImapStore.java160 * @param host the host (server) of the account
164 public static String getImapId(Context context, String userName, String host, argument
186 String vendorId = VendorPolicyLoader.getInstance(context).getImapIdValues(userName, host,
/packages/apps/Email/tests/src/com/android/email/mail/transport/
H A DMockTransport.java209 public void setHost(String host) { argument
210 mHost = host;
/packages/apps/Nfc/nci/jni/
H A DSecureElement.cpp718 UINT8 host = (mNewPipeId == STATIC_PIPE_0x70) ? 0x02 : 0x03; local
720 nfaStat = NFA_HciAddStaticPipe(mNfaHciHandle, host, gate, mNewPipeId);
1180 UINT8 host = (pipe == STATIC_PIPE_0x70) ? 0x02 : 0x03; local
1183 tNFA_STATUS nfaStat = NFA_HciAddStaticPipe(mNfaHciHandle, host, gate, pipe);
1284 ALOGD ("%s: NFA_HCI_CREATE_PIPE_EVT; status=0x%X; pipe=0x%X; src gate=0x%X; dest host=0x%X; dest gate=0x%X", fn,
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DEmojiPalettesView.java431 private void addTab(final TabHost host, final int categoryId) { argument
433 final TabHost.TabSpec tspec = host.newTabSpec(tabId);
448 host.addTab(tspec);

Completed in 1224 milliseconds