Searched refs:host (Results 1 - 25 of 201) sorted by relevance

123456789

/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DViewRootImpl_Accessor.java23 public static void dispatchApplyInsets(ViewRootImpl viewRoot, View host) { argument
24 viewRoot.dispatchApplyInsets(host);
/frameworks/support/compat/java/android/support/v4/view/
H A DAccessibilityDelegateCompat.java38 * host methods. This prevents certain properties such as class name from
41 * as any changes will be overwritten by the host class.
44 * methods are called <i>after</i> host methods, which all properties to be
45 * modified without being overwritten by the host class.
54 public boolean dispatchPopulateAccessibilityEvent(View host,
56 return compat.dispatchPopulateAccessibilityEvent(host, event);
60 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) {
61 compat.onInitializeAccessibilityEvent(host, event);
66 View host, AccessibilityNodeInfo info) {
67 compat.onInitializeAccessibilityNodeInfo(host,
94 getAccessibilityNodeProvider( AccessibilityDelegate delegate, View host) argument
100 performAccessibilityAction(AccessibilityDelegate delegate, View host, int action, Bundle args) argument
168 getAccessibilityNodeProvider( AccessibilityDelegate delegate, View host) argument
178 performAccessibilityAction(AccessibilityDelegate delegate, View host, int action, Bundle args) argument
226 sendAccessibilityEvent(View host, int eventType) argument
248 sendAccessibilityEventUnchecked(View host, AccessibilityEvent event) argument
269 dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
289 onPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
309 onInitializeAccessibilityEvent(View host, AccessibilityEvent event) argument
328 onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) argument
352 onRequestSendAccessibilityEvent(ViewGroup host, View child, AccessibilityEvent event) argument
371 getAccessibilityNodeProvider(View host) argument
391 performAccessibilityAction(View host, int action, Bundle args) argument
[all...]
/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/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerViewAccessibilityDelegate.java45 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
46 if (super.performAccessibilityAction(host, action, args)) {
57 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
58 super.onInitializeAccessibilityNodeInfo(host, info);
66 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) { argument
67 super.onInitializeAccessibilityEvent(host, event);
69 if (host instanceof RecyclerView && !shouldIgnore()) {
70 RecyclerView rv = (RecyclerView) host;
107 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
108 super.onInitializeAccessibilityNodeInfo(host, inf
117 performAccessibilityAction(View host, int action, Bundle args) argument
[all...]
/frameworks/base/core/java/org/apache/http/conn/ssl/
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 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 DAllowAllHostnameVerifier.java48 final String host,
47 verify( final String host, final String[] cns, final String[] subjectAlts) argument
/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/rs/
H A Dupdate-prebuilts.py61 def host_to_build_host(host):
62 """Gets the build host name for an NDK host tag.
70 }[host]
73 def build_name(host):
74 """Gets the build name for a given host.
83 }[host]
95 def package_name(build_number, host):
101 return 'renderscript-{}-{}-x86.tar.bz2'.format(build_number, host)
104 def download_build(host, build_numbe
[all...]
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/media/
H A DPlaybackControlGlueTest.java103 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl();
105 mGlue.setHost(host);
106 Mockito.verify(mGlue, times(1)).onAttachedToHost(host);
107 assertSame(mGlue, host.mGlue);
108 assertSame(host, mGlue.getHost());
109 assertTrue(host.mPlaybackRowPresenter instanceof PlaybackControlsRowPresenter);
110 assertTrue(host.mRow instanceof PlaybackControlsRow);
129 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl();
131 mGlue.setHost(host);
132 Mockito.verify(mGlue, times(1)).onAttachedToHost(host);
[all...]
H A DPlaybackGlueTest.java50 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl();
52 glue.setHost(host);
53 Mockito.verify(glue, times(1)).onAttachedToHost(host);
54 assertSame(glue, host.mGlue);
55 assertSame(host, glue.getHost());
57 host.notifyOnStart();
60 host.notifyOnResume();
63 host.notifyOnPause();
66 host.notifyOnStop();
70 glue2.setHost(host);
[all...]
H A DPlaybackBannerControlGlueTest.java80 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl();
82 mGlue.setHost(host);
83 assertSame(mGlue, host.mGlue);
84 assertSame(host, mGlue.getHost());
85 assertTrue(host.mPlaybackRowPresenter instanceof PlaybackControlsRowPresenter);
86 assertTrue(host.mRow instanceof PlaybackControlsRow);
105 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl();
107 mGlue.setHost(host);
108 assertSame(mGlue, host.mGlue);
109 assertSame(host, mGlu
[all...]
H A DPlaybackTransportControlGlueTest.java80 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl();
82 mGlue.setHost(host);
83 assertSame(mGlue, host.mGlue);
84 assertSame(host, mGlue.getHost());
85 assertTrue(host.mPlaybackRowPresenter instanceof PlaybackTransportRowPresenter);
86 assertTrue(host.mRow instanceof PlaybackControlsRow);
105 PlaybackGlueHostImpl host = new PlaybackGlueHostImpl();
107 mGlue.setHost(host);
108 assertSame(mGlue, host.mGlue);
109 assertSame(host, mGlu
[all...]
/frameworks/base/core/java/android/view/
H A DIInputFilter.aidl29 void install(IInputFilterHost host);
/frameworks/base/core/java/android/webkit/
H A DWebViewDatabase.java93 * Stores HTTP authentication credentials for a given host and realm to the {@link WebViewDatabase}
114 * @param host the host to which the credentials apply
122 public abstract void setHttpAuthUsernamePassword(String host, String realm, argument
126 * Retrieves HTTP authentication credentials for a given host and realm from the {@link
129 * @param host the host to which the credentials apply
138 public abstract String[] getHttpAuthUsernamePassword(String host, String realm); argument
/frameworks/base/packages/services/PacProcessor/com/android/net/
H A DIProxyService.aidl21 String resolvePacFile(String host, String url);
/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);
46 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event) { argument
47 CharSequence text = ((TextView) host).getText();
54 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
55 super.onInitializeAccessibilityNodeInfo(host, info);
/frameworks/native/services/inputflinger/host/
H A DInputDriver.cpp294 ::input_device_identifier_t* create_device_identifier(input_host_t* host, argument
297 auto driver = static_cast<InputDriverInterface*>(host);
301 input_device_definition_t* create_device_definition(input_host_t* host) { argument
302 auto driver = static_cast<InputDriverInterface*>(host);
306 input_report_definition_t* create_input_report_definition(input_host_t* host) { argument
307 auto driver = static_cast<InputDriverInterface*>(host);
311 input_report_definition_t* create_output_report_definition(input_host_t* host) { argument
312 auto driver = static_cast<InputDriverInterface*>(host);
316 void free_report_definition(input_host_t* host, input_report_definition_t* report_def) { argument
317 auto driver = static_cast<InputDriverInterface*>(host);
321 input_device_definition_add_report(input_host_t* host, input_device_definition_t* d, input_report_definition_t* r) argument
327 input_report_definition_add_collection(input_host_t* host, input_report_definition_t* report, input_collection_id_t id, int32_t arity) argument
333 input_report_definition_declare_usage_int(input_host_t* host, input_report_definition_t* report, input_collection_id_t id, input_usage_t usage, int32_t min, int32_t max, float resolution) argument
340 input_report_definition_declare_usages_bool(input_host_t* host, input_report_definition_t* report, input_collection_id_t id, input_usage_t* usage, size_t usage_count) argument
347 register_device(input_host_t* host, input_device_identifier_t* id, input_device_definition_t* d) argument
353 unregister_device(input_host_t* host, input_device_handle_t* handle) argument
358 input_allocate_report(input_host_t* host, input_report_definition_t* r) argument
363 input_report_set_usage_int(input_host_t* host, input_report_t* r, input_collection_id_t id, input_usage_t usage, int32_t value, int32_t arity_index) argument
369 input_report_set_usage_bool(input_host_t* host, input_report_t* r, input_collection_id_t id, input_usage_t usage, bool value, int32_t arity_index) argument
375 report_event(input_host_t* host, input_device_handle_t* d, input_report_t* report) argument
380 input_get_device_property_map(input_host_t* host, input_device_identifier_t* id) argument
386 input_get_device_property(input_host_t* host, input_property_map_t* map, const char* key) argument
392 input_get_property_key(input_host_t* host, input_property_t* property) argument
397 input_get_property_value(input_host_t* host, input_property_t* property) argument
402 input_free_device_property(input_host_t* host, input_property_t* property) argument
407 input_free_device_property_map(input_host_t* host, input_property_map_t* map) argument
[all...]
H A DInputDriver.h137 input_device_identifier_t* create_device_identifier(input_host_t* host,
141 input_device_definition_t* create_device_definition(input_host_t* host);
143 input_report_definition_t* create_input_report_definition(input_host_t* host);
145 input_report_definition_t* create_output_report_definition(input_host_t* host);
147 void free_report_definition(input_host_t* host, input_report_definition_t* report_def);
149 void input_device_definition_add_report(input_host_t* host,
152 void input_report_definition_add_collection(input_host_t* host,
155 void input_report_definition_declare_usage_int(input_host_t* host,
159 void input_report_definition_declare_usages_bool(input_host_t* host,
164 input_device_handle_t* register_device(input_host_t* host,
[all...]
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/util/
H A DLinkAccessibilityHelper.java119 public void sendAccessibilityEvent(View host, int eventType) { argument
121 mExploreByTouchHelper.sendAccessibilityEvent(host, eventType);
123 super.sendAccessibilityEvent(host, eventType);
128 public void sendAccessibilityEventUnchecked(View host, AccessibilityEvent event) { argument
130 mExploreByTouchHelper.sendAccessibilityEventUnchecked(host, event);
132 super.sendAccessibilityEventUnchecked(host, event);
137 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) { argument
139 ? mExploreByTouchHelper.dispatchPopulateAccessibilityEvent(host, event)
140 : super.dispatchPopulateAccessibilityEvent(host, event);
144 public void onPopulateAccessibilityEvent(View host, AccessibilityEven argument
153 onInitializeAccessibilityEvent(View host, AccessibilityEvent event) argument
162 onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) argument
171 onRequestSendAccessibilityEvent(ViewGroup host, View child, AccessibilityEvent event) argument
179 getAccessibilityNodeProvider(View host) argument
186 performAccessibilityAction(View host, int action, Bundle args) argument
[all...]
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceRecyclerViewAccessibilityDelegate.java52 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
53 mDefaultItemDelegate.onInitializeAccessibilityNodeInfo(host, info);
54 int position = mRecyclerView.getChildAdapterPosition(host);
71 public boolean performAccessibilityAction(View host, int action, Bundle args) {
73 return mDefaultItemDelegate.performAccessibilityAction(host, action, args);
/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);
/frameworks/base/core/java/android/net/
H A DProxy.java102 * @param ctx A Context used to get the settings for the proxy host.
104 * @return Proxy (java.net) object containing the host name. If the
105 * user did not set a hostname it returns the default host.
106 * A null value means that no host is to be used.
110 String host = "";
111 if ((url != null) && !isLocalHost(host)) {
126 * Return the proxy host set by the user.
127 * @param ctx A Context used to get the settings for the proxy host.
128 * @return String containing the host name. If the user did not set a host
196 isLocalHost(String host) argument
257 setHttpProxySystemProperty(String host, String port, String exclList, Uri pacFileUrl) argument
[all...]
/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

Completed in 4077 milliseconds

123456789