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

123456

/frameworks/layoutlib/bridge/src/android/view/
H A DViewRootImpl_Accessor.java23 public static void dispatchApplyInsets(ViewRootImpl viewRoot, View host) { argument
24 viewRoot.dispatchApplyInsets(host);
/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/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeBrightnessHostForwarder.java26 public DozeBrightnessHostForwarder(DozeMachine.Service wrappedService, DozeHost host) { argument
28 mHost = host;
H A DDozeFactory.java49 DozeHost host = getHost(dozeService);
57 wrappedService = new DozeBrightnessHostForwarder(wrappedService, host);
66 createDozeTriggers(context, sensorManager, host, alarmManager, config, params,
68 createDozeUi(context, host, wakeLock, machine, handler, alarmManager, params),
70 createDozeScreenBrightness(context, wrappedService, sensorManager, host, params,
79 DozeMachine.Service service, SensorManager sensorManager, DozeHost host,
83 return new DozeScreenBrightness(context, service, sensorManager, sensor, host, handler,
88 DozeHost host, AlarmManager alarmManager, AmbientDisplayConfiguration config,
91 return new DozeTriggers(context, machine, host, alarmManager, config, params,
95 private DozeMachine.Part createDozeUi(Context context, DozeHost host, WakeLoc argument
78 createDozeScreenBrightness(Context context, DozeMachine.Service service, SensorManager sensorManager, DozeHost host, DozeParameters params, Handler handler) argument
87 createDozeTriggers(Context context, SensorManager sensorManager, DozeHost host, AlarmManager alarmManager, AmbientDisplayConfiguration config, DozeParameters params, Handler handler, WakeLock wakeLock, DozeMachine machine) argument
[all...]
/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/SystemUI/src/com/android/keyguard/
H A DKeyguardClockAccessibilityDelegate.java37 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) { argument
38 super.onInitializeAccessibilityEvent(host, event);
49 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event) { argument
51 super.onPopulateAccessibilityEvent(host, event);
53 CharSequence text = ((TextView) host).getText();
61 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
62 super.onInitializeAccessibilityNodeInfo(host, info);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSFactoryImpl.java52 public QSFactoryImpl(QSTileHost host) { argument
53 mHost = host;
/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
H A DTestUtils.java36 public static void assertConnectionFails(SSLContext context, String host, int port) argument
39 Socket s = context.getSocketFactory().createSocket(host, port);
41 fail("Expected connection to " + host + ":" + port + " to fail.");
46 public static void assertConnectionSucceeds(SSLContext context, String host, int port) argument
48 Socket s = context.getSocketFactory().createSocket(host, port);
52 public static void assertUrlConnectionFails(SSLContext context, String host, int port) argument
54 URL url = new URL("https://" + host + ":" + port);
59 fail("Connection to " + host + ":" + port + " expected to fail");
65 public static void assertUrlConnectionSucceeds(SSLContext context, String host, int port) argument
67 URL url = new URL("https://" + host
[all...]
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/accessibility/
H A DAccessibilityRoleDescriptionSupportActivity.java89 public void onInitializeAccessibilityNodeInfo(View host, argument
91 super.onInitializeAccessibilityNodeInfo(host, info);
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/accessibility/
H A DAccessibilityRoleDescriptionSupportActivity.java89 public void onInitializeAccessibilityNodeInfo(View host, argument
91 super.onInitializeAccessibilityNodeInfo(host, info);
/frameworks/base/core/java/android/net/http/
H A DX509TrustManagerExtensions.java90 * description of the chain and authType parameters. The final parameter, host, should be the
97 String host) throws CertificateException {
99 return mDelegate.checkServerTrusted(chain, authType, host);
103 authType, host);
96 checkServerTrusted(X509Certificate[] chain, String authType, String host) argument
/frameworks/base/core/java/android/webkit/
H A DWebViewDatabase.java94 * Stores HTTP authentication credentials for a given host and realm to the {@link WebViewDatabase}
115 * @param host the host to which the credentials apply
123 public abstract void setHttpAuthUsernamePassword(String host, String realm, argument
127 * Retrieves HTTP authentication credentials for a given host and realm from the {@link
130 * @param host the host to which the credentials apply
140 public abstract String[] getHttpAuthUsernamePassword(String host, String realm); argument
/frameworks/base/core/java/com/android/internal/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, AccessibilityNodeInfo 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, AccessibilityNodeInfo info) {
87 super.onInitializeAccessibilityNodeInfo(host, inf
[all...]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
H A DTileServicesTest.java59 QSTileHost host = new QSTileHost(mContext, null,
61 mTileService = new TestTileServices(host, Looper.getMainLooper());
128 public TestTileServices(QSTileHost host, Looper looper) { argument
129 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/main/java/androidx/recyclerview/widget/
H A DRecyclerViewAccessibilityDelegate.java47 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
48 if (super.performAccessibilityAction(host, action, args)) {
59 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
60 super.onInitializeAccessibilityNodeInfo(host, info);
68 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) { argument
69 super.onInitializeAccessibilityEvent(host, event);
71 if (host instanceof RecyclerView && !shouldIgnore()) {
72 RecyclerView rv = (RecyclerView) host;
110 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
111 super.onInitializeAccessibilityNodeInfo(host, inf
120 performAccessibilityAction(View host, int action, Bundle args) argument
[all...]
/frameworks/base/core/java/android/app/
H A DFragmentState.java68 public Fragment instantiate(FragmentHostCallback host, FragmentContainer container, argument
71 final Context context = host.getContext();
95 mInstance.mFragmentManager = host.mFragmentManager;
/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.java128 * @param host The input filter host environment.
130 public final void install(IInputFilterHost host) { argument
131 mH.obtainMessage(MSG_INSTALL, host).sendToTarget();

Completed in 1244 milliseconds

123456