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

12345

/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/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.java92 public final void verify(String host, SSLSocket ssl) argument
94 if(host == null) {
95 throw new NullPointerException("host to verify is null");
101 verify(host, x509);
104 public final boolean verify(String host, SSLSession session) { argument
108 verify(host, x509);
116 public final void verify(String host, X509Certificate cert) argument
120 verify(host, cns, subjectAlts);
123 public final void verify(final String host, final String[] cns, argument
145 String msg = "Certificate for <" + host
[all...]
/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/tests/NetworkSecurityConfigTest/src/android/security/net/config/
H A DTestUtils.java34 public static void assertConnectionFails(SSLContext context, String host, int port) argument
37 Socket s = context.getSocketFactory().createSocket(host, port);
39 fail("Expected connection to " + host + ":" + port + " to fail.");
44 public static void assertConnectionSucceeds(SSLContext context, String host, int port) argument
46 Socket s = context.getSocketFactory().createSocket(host, port);
50 public static void assertUrlConnectionFails(SSLContext context, String host, int port) argument
52 URL url = new URL("https://" + host + ":" + port);
57 fail("Connection to " + host + ":" + port + " expected to fail");
63 public static void assertUrlConnectionSucceeds(SSLContext context, String host, int port) argument
65 URL url = new URL("https://" + host
[all...]
/frameworks/base/core/java/android/net/http/
H A DX509TrustManagerExtensions.java91 * description of the chain and authType parameters. The final parameter, host, should be the
98 String host) throws CertificateException {
100 return mDelegate.checkServerTrusted(chain, authType, host);
104 authType, host);
97 checkServerTrusted(X509Certificate[] chain, String authType, String host) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DAutoTileManager.java38 public AutoTileManager(Context context, QSTileHost host) { argument
40 mHost = host;
43 host.getHotspotController().addCallback(mHotspotCallback);
46 host.getNetworkController().getDataSaverController().addListener(mDataSaverListener);
68 host.getManagedProfileController().addCallback(mProfileCallback);
71 host.getNightModeController().addListener(mNightModeListener);
H A DManagedProfileController.java41 public ManagedProfileController(QSTileHost host) { argument
42 mContext = host.getContext();
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
H A DTileServicesTests.java46 QSTileHost host = new QSTileHost(mContext, null, null, null, null,
50 mTileService = new TestTileServices(host, Looper.myLooper());
108 public TestTileServices(QSTileHost host, Looper looper) { argument
109 super(host, looper);
/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;
86 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
87 super.onInitializeAccessibilityNodeInfo(host, inf
[all...]
/frameworks/base/core/java/android/security/net/config/
H A DNetworkSecurityTrustManager.java112 String host) throws CertificateException {
113 List<X509Certificate> trustedChain = mDelegate.checkServerTrusted(certs, authType, host);
111 checkServerTrusted(X509Certificate[] certs, String authType, String host) argument
/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.java46 public AirplaneModeTile(Host host) { argument
47 super(host);
H A DColorInversionTile.java43 public ColorInversionTile(Host host) { argument
44 super(host);
H A DDataSaverTile.java34 public DataSaverTile(Host host) { argument
35 super(host);
36 mDataSaverController = host.getNetworkController().getDataSaverController();
H A DLocationTile.java47 public LocationTile(Host host) { argument
48 super(host);
49 mController = host.getLocationController();
50 mKeyguard = host.getKeyguardMonitor();
H A DUserTile.java35 public UserTile(Host host) { argument
36 super(host);
37 mUserSwitcherController = host.getUserSwitcherController();
38 mUserInfoController = host.getUserInfoController();
H A DWorkModeTile.java41 public WorkModeTile(Host host) { argument
42 super(host);
43 mProfileController = host.getManagedProfileController();
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DNightModeTile.java40 public NightModeTile(Host host) { argument
41 super(host);
42 mNightModeController = host.getNightModeController();

Completed in 474 milliseconds

12345