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

123

/frameworks/base/core/java/android/net/http/
H A DRequestFeeder.java31 Request getRequest(HttpHost host); argument
34 * @return true if a request for this host is available
36 boolean haveRequest(HttpHost host); argument
H A DX509TrustManagerExtensions.java56 * description of the chain and authType parameters. The final parameter, host, should be the
63 String host) throws CertificateException {
64 return mDelegate.checkServerTrusted(chain, authType, host);
62 checkServerTrusted(X509Certificate[] chain, String authType, String host) argument
H A DHttpConnection.java37 HttpConnection(Context context, HttpHost host, argument
39 super(context, host, requestFeeder);
H A DHttpsConnection.java141 HttpsConnection(Context context, HttpHost host, HttpHost proxy, argument
143 super(context, host, requestFeeder);
209 // to add 'host' header unless we want proxy to answer us with a
214 || headerName.equals("host")) {
290 // if we do not have a proxy, we simply connect to the host
H A DIdleCache.java67 HttpHost host, Connection connection) {
72 HttpLog.v("IdleCache size " + mCount + " host " + host);
80 entry.mHost = host;
97 synchronized Connection getConnection(HttpHost host) { argument
104 if (eHost != null && eHost.equals(host)) {
66 cacheConnection( HttpHost host, Connection connection) argument
H A DConnection.java70 * The host this connection is connected to. If using proxy,
105 protected Connection(Context context, HttpHost host, argument
108 mHost = host;
124 Context context, HttpHost host, HttpHost proxy,
127 if (host.getSchemeName().equals("http")) {
128 return new HttpConnection(context, host, requestFeeder);
132 return new HttpsConnection(context, host, proxy, requestFeeder);
123 getConnection( Context context, HttpHost host, HttpHost proxy, RequestFeeder requestFeeder) argument
H A DRequest.java47 * Represents an HTTP request for a given host.
103 * @param host The server that will handle this request
111 Request(String method, HttpHost host, HttpHost proxyHost, String path, argument
116 mHost = host;
/frameworks/base/core/jni/android/graphics/
H A DNinePatchPeeker.h28 NinePatchPeeker(SkImageDecoder* host) { argument
29 // the host lives longer than we do, so a raw ptr is safe
30 fHost = host;
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DObscureSpeechDelegate.java48 public void sendAccessibilityEvent(View host, int eventType) { argument
49 super.sendAccessibilityEvent(host, eventType);
56 host.announceForAccessibility(host.getContext().getString(
62 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event) { argument
63 super.onPopulateAccessibilityEvent(host, event);
68 event.setContentDescription(host.getContext().getString(
74 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
75 super.onInitializeAccessibilityNodeInfo(host, info);
78 final Context ctx = host
[all...]
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DAdbUtils.java40 * @param host IP address in integer format
43 public static String convert(int host) { argument
44 return ((host >> 24) & 0xFF) + "."
45 + ((host >> 16) & 0xFF) + "."
46 + ((host >> 8) & 0xFF) + "."
47 + (host & 0xFF);
54 * @param host DNS name
58 public static int resolve(String host) throws IOException { argument
66 String cmd = "dns:" + host;
109 * @param remoteAddress IP address of the host t
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DHDCP.cpp79 status_t HDCP::initAsync(const char *host, unsigned port) { argument
86 return mHDCPModule->initAsync(host, port);
/frameworks/base/core/java/android/net/
H A DSntpClient.java67 * Sends an SNTP request to the given host and processes the response.
69 * @param host host name of the server.
73 public boolean requestTime(String host, int timeout) { argument
78 InetAddress address = InetAddress.getByName(host);
H A DProxyProperties.java40 public ProxyProperties(String host, int port, String exclList) { argument
41 mHost = host;
46 private ProxyProperties(String host, int port, String exclList, String[] parsedExclList) { argument
47 mHost = host;
201 String host = null;
204 host = in.readString();
210 new ProxyProperties(host, port, exclList, parsedExclList);
H A DRouteInfo.java79 public static RouteInfo makeHostRoute(InetAddress host) { argument
80 return makeHostRoute(host, null);
83 public static RouteInfo makeHostRoute(InetAddress host, InetAddress gateway) { argument
84 if (host == null) return null;
86 if (host instanceof Inet4Address) {
87 return new RouteInfo(new LinkAddress(host, 32), gateway);
89 return new RouteInfo(new LinkAddress(host, 128), gateway);
H A DWebAddress.java57 /* host */ "([" + GOOD_IRI_CHAR + "%_-][" + GOOD_IRI_CHAR + "%_\\.-]*|\\[[0-9a-fA-F:\\.]+\\])?" +
146 public void setHost(String host) { argument
147 mHost = host;
H A DProxy.java69 * though if the proxy is undefined the host string
103 * @param ctx A Context used to get the settings for the proxy host.
105 * @return Proxy (java.net) object containing the host name. If the
106 * user did not set a hostname it returns the default host.
107 * A null value means that no host is to be used.
111 String host = "";
114 host = uri.getHost();
117 if (!isLocalHost(host)) {
127 if (!proxyProperties.isExcluded(host)) {
137 * Return the proxy host se
227 isLocalHost(String host) argument
337 setHttpProxySystemProperty(String host, String port, String exclList) argument
[all...]
H A DSSLCertificateSocketFactory.java377 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException { argument
378 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close);
382 verifyHostname(s, host);
388 * Creates a new socket which is not connected to any remote host.
442 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort) argument
445 host, port, localAddr, localPort);
449 verifyHostname(s, host);
461 public Socket createSocket(String host, int port) throws IOException { argument
462 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(host, port);
466 verifyHostname(s, host);
[all...]
/frameworks/base/core/java/android/view/
H A DInputFilter.java134 * @param host The input filter host environment.
136 public final void install(IInputFilterHost host) { argument
137 mH.obtainMessage(MSG_INSTALL, host).sendToTarget();
/frameworks/base/core/java/android/webkit/
H A DOverScrollGlow.java42 public OverScrollGlow(WebViewClassic host) { argument
43 mHostView = host;
44 Context context = host.getContext();
/frameworks/support/v4/ics/android/support/v4/view/
H A DAccessibilityDelegateCompatIcs.java31 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event); argument
32 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event); argument
33 public void onInitializeAccessibilityNodeInfo(View host, Object info); argument
34 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event); argument
35 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child, argument
37 public void sendAccessibilityEvent(View host, int eventType); argument
38 public void sendAccessibilityEventUnchecked(View host, AccessibilityEvent event); argument
48 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) {
49 return bridge.dispatchPopulateAccessibilityEvent(host, event);
53 public void onInitializeAccessibilityEvent(View host, AccessibilityEven
85 dispatchPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
90 onInitializeAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
95 onInitializeAccessibilityNodeInfo(Object delegate, View host, Object info) argument
100 onPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
105 onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, AccessibilityEvent event) argument
111 sendAccessibilityEvent(Object delegate, View host, int eventType) argument
115 sendAccessibilityEventUnchecked(Object delegate, View host, AccessibilityEvent event) argument
[all...]
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DAccessibilityDelegateCompatJellyBean.java33 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event); argument
34 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event); argument
35 public void onInitializeAccessibilityNodeInfo(View host, Object info); argument
36 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event); argument
37 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child, argument
39 public void sendAccessibilityEvent(View host, int eventType); argument
40 public void sendAccessibilityEventUnchecked(View host, AccessibilityEvent event); argument
41 public Object getAccessibilityNodeProvider(View host); argument
42 public boolean performAccessibilityAction(View host, int action, Bundle args); argument
50 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEven
97 getAccessibilityNodeProvider(Object delegate, View host) argument
102 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
[all...]
/frameworks/av/media/libmedia/
H A DIHDCP.cpp70 virtual status_t initAsync(const char *host, unsigned port) { argument
73 data.writeCString(host);
160 const char *host = data.readCString(); local
163 reply->writeInt32(initAsync(host, port));
/frameworks/base/core/java/android/widget/
H A DShareActionProvider.java332 public boolean onChooseActivity(ActivityChooserModel host, Intent intent) { argument
/frameworks/base/keystore/java/android/security/
H A DKeyChain.java105 public static final String EXTRA_HOST = "host";
219 * <p>{@code host} and {@code port} may be used to give the user
235 * @param host The host name of the server requesting the
244 String host, int port,
270 intent.putExtra(EXTRA_HOST, host);
242 choosePrivateKeyAlias(Activity activity, KeyChainAliasCallback response, String[] keyTypes, Principal[] issuers, String host, int port, String alias) argument
/frameworks/support/v4/java/android/support/v4/view/
H A DAccessibilityDelegateCompat.java36 public boolean dispatchPopulateAccessibilityEvent(Object delegate, View host, argument
38 public void onInitializeAccessibilityEvent(Object delegate, View host, argument
40 public void onInitializeAccessibilityNodeInfo(Object delegate, View host, argument
42 public void onPopulateAccessibilityEvent(Object delegate, View host, argument
44 public boolean onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, argument
46 public void sendAccessibilityEvent(Object delegate, View host, int eventType); argument
47 public void sendAccessibilityEventUnchecked(Object delegate, View host, argument
50 View host);
51 public boolean performAccessibilityAction(Object delegate, View host, int action, argument
66 public boolean dispatchPopulateAccessibilityEvent(Object delegate, View host, argument
49 getAccessibilityNodeProvider(Object delegate, View host) argument
72 onInitializeAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
78 onInitializeAccessibilityNodeInfo(Object delegate, View host, AccessibilityNodeInfoCompat info) argument
84 onPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
90 onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, AccessibilityEvent event) argument
96 sendAccessibilityEvent(Object delegate, View host, int eventType) argument
101 sendAccessibilityEventUnchecked(Object delegate, View host, AccessibilityEvent event) argument
107 getAccessibilityNodeProvider(Object delegate, View host) argument
113 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
170 dispatchPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
177 onInitializeAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
183 onInitializeAccessibilityNodeInfo(Object delegate, View host, AccessibilityNodeInfoCompat info) argument
190 onPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
196 onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, AccessibilityEvent event) argument
203 sendAccessibilityEvent(Object delegate, View host, int eventType) argument
208 sendAccessibilityEventUnchecked(Object delegate, View host, AccessibilityEvent event) argument
273 getAccessibilityNodeProvider(Object delegate, View host) argument
284 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
335 sendAccessibilityEvent(View host, int eventType) argument
357 sendAccessibilityEventUnchecked(View host, AccessibilityEvent event) argument
378 dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
398 onPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
418 onInitializeAccessibilityEvent(View host, AccessibilityEvent event) argument
437 onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) argument
460 onRequestSendAccessibilityEvent(ViewGroup host, View child, AccessibilityEvent event) argument
479 getAccessibilityNodeProvider(View host) argument
499 performAccessibilityAction(View host, int action, Bundle args) argument
[all...]

Completed in 6940 milliseconds

123