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

1234

/frameworks/base/core/java/org/apache/http/conn/scheme/
H A DLayeredSocketFactory.java54 * Returns a socket connected to the given host that is layered over an
59 * @param host the host name/IP
60 * @param port the port on the host
67 * @throws UnknownHostException if the IP address of the host cannot be
72 String host,
70 createSocket( Socket socket, String host, int port, boolean autoClose ) argument
H A DSocketFactory.java76 * Connects a socket to the given host.
82 * @param host the host to connect to
83 * @param port the port to connect to on the host
95 * @throws UnknownHostException if the IP address of the target host
102 String host,
120 * socket to a host in the same intranet ("trusted zone")
100 connectSocket( Socket sock, String host, int port, InetAddress localAddress, int localPort, HttpParams params ) argument
/frameworks/base/core/java/android/net/http/
H A DX509TrustManagerExtensions.java59 * description of the chain and authType parameters. The final parameter, host, should be the
66 String host) throws CertificateException {
67 return mDelegate.checkServerTrusted(chain, authType, host);
65 checkServerTrusted(X509Certificate[] chain, String authType, String host) argument
/frameworks/base/core/java/org/apache/http/conn/ssl/
H A DAllowAllHostnameVerifier.java48 final String host,
47 verify( final String host, final String[] cns, final String[] subjectAlts) argument
H A DBrowserCompatHostnameVerifier.java56 final String host,
59 verify(host, cns, subjectAlts, false);
55 verify( final String host, final String[] cns, final String[] subjectAlts) argument
H A DStrictHostnameVerifier.java63 final String host,
66 verify(host, cns, subjectAlts, true);
62 verify( final String host, final String[] cns, final String[] subjectAlts) argument
H A DX509HostnameVerifier.java67 boolean verify(String host, SSLSession session); argument
69 void verify(String host, SSLSocket ssl) throws IOException; argument
71 void verify(String host, X509Certificate cert) throws SSLException; argument
84 * @param host The hostname to verify.
87 void verify(String host, String[] cns, String[] subjectAlts) argument
H A DAbstractVerifier.java93 public final void verify(String host, SSLSocket ssl) argument
95 if(host == null) {
96 throw new NullPointerException("host to verify is null");
102 verify(host, x509);
105 public final boolean verify(String host, SSLSession session) { argument
109 verify(host, x509);
117 public final void verify(String host, X509Certificate cert) argument
121 verify(host, cns, subjectAlts);
124 public final void verify(final String host, final String[] cns, argument
146 String msg = "Certificate for <" + host
[all...]
/frameworks/base/core/jni/android/graphics/
H A DNinePatchPeeker.h27 // the host lives longer than we do, so a raw ptr is safe
30 NinePatchPeeker(SkImageDecoder* host) argument
31 : mHost(host)
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DObscureSpeechDelegate.java49 public void sendAccessibilityEvent(View host, int eventType) { argument
50 super.sendAccessibilityEvent(host, eventType);
57 host.announceForAccessibility(host.getContext().getString(
63 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event) { argument
64 super.onPopulateAccessibilityEvent(host, event);
69 event.setContentDescription(host.getContext().getString(
75 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
76 super.onInitializeAccessibilityNodeInfo(host, info);
79 final Context ctx = host
[all...]
/frameworks/base/packages/services/PacProcessor/src/com/android/pacprocessor/
H A DPacNative.java36 private native String makeProxyRequestNativeLocked(String url, String host); argument
74 public synchronized String makeProxyRequest(String url, String host) { argument
75 String ret = makeProxyRequestNativeLocked(url, host);
H A DPacService.java73 public String resolvePacFile(String host, String url) throws RemoteException { argument
75 if (host == null) {
76 throw new IllegalArgumentException("The host must not be null");
83 for (char c : host.toCharArray()) {
85 throw new IllegalArgumentException("Invalid host was passed");
88 return mPacNative.makeProxyRequest(url, host);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerViewAccessibilityDelegate.java43 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
44 if (super.performAccessibilityAction(host, action, args)) {
55 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
56 super.onInitializeAccessibilityNodeInfo(host, info);
64 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) { argument
65 super.onInitializeAccessibilityEvent(host, event);
67 if (host instanceof RecyclerView && !shouldIgnore()) {
68 RecyclerView rv = (RecyclerView) host;
81 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
82 super.onInitializeAccessibilityNodeInfo(host, inf
[all...]
/frameworks/base/core/java/android/net/
H A DSntpClient.java66 * Sends an SNTP request to the given host and processes the response.
68 * @param host host name of the server.
72 public boolean requestTime(String host, int timeout) { argument
77 InetAddress address = InetAddress.getByName(host);
H A DProxy.java101 * @param ctx A Context used to get the settings for the proxy host.
103 * @return Proxy (java.net) object containing the host name. If the
104 * user did not set a hostname it returns the default host.
105 * A null value means that no host is to be used.
109 String host = "";
110 if ((url != null) && !isLocalHost(host)) {
125 * Return the proxy host set by the user.
126 * @param ctx A Context used to get the settings for the proxy host.
127 * @return String containing the host name. If the user did not set a host
191 isLocalHost(String host) argument
252 setHttpProxySystemProperty(String host, String port, String exclList, Uri pacFileUrl) argument
[all...]
H A DProxyInfo.java62 * on the specified host and port.
64 public static ProxyInfo buildDirectProxy(String host, int port) { argument
65 return new ProxyInfo(host, port, null);
70 * on the specified host and port.
72 * The proxy will not be used to access any host in exclusion list, exclList.
77 public static ProxyInfo buildDirectProxy(String host, int port, List<String> exclList) { argument
79 return new ProxyInfo(host, port, TextUtils.join(",", array), array);
94 public ProxyInfo(String host, int port, String exclList) { argument
95 mHost = host;
140 private ProxyInfo(String host, in argument
[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/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DAirplaneModeTile.java41 public AirplaneModeTile(Host host) { argument
42 super(host);
H A DColorInversionTile.java40 public ColorInversionTile(Host host) { argument
41 super(host);
55 mUsageTracker = new UsageTracker(host.getContext(),
H A DFlashlightTile.java36 public FlashlightTile(Host host) { argument
37 super(host);
38 mFlashlightController = host.getFlashlightController();
H A DLocationTile.java38 public LocationTile(Host host) { argument
39 super(host);
40 mController = host.getLocationController();
41 mKeyguard = host.getKeyguardMonitor();
H A DRotationLockTile.java41 public RotationLockTile(Host host) { argument
42 super(host);
43 mController = host.getRotationLockController();
/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/libmediaplayerservice/
H A DHDCP.cpp83 status_t HDCP::initAsync(const char *host, unsigned port) { argument
90 return mHDCPModule->initAsync(host, port);

Completed in 468 milliseconds

1234