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

12345678

/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/support/v4/java/android/support/v4/view/
H A DAccessibilityDelegateCompat.java34 * host methods. This prevents certain properties such as class name from
37 * as any changes will be overwritten by the host class.
40 * methods are called <i>after</i> host methods, which all properties to be
41 * modified without being overwritten by the host class.
48 public boolean dispatchPopulateAccessibilityEvent(Object delegate, View host, argument
50 public void onInitializeAccessibilityEvent(Object delegate, View host, argument
52 public void onInitializeAccessibilityNodeInfo(Object delegate, View host, argument
54 public void onPopulateAccessibilityEvent(Object delegate, View host, argument
56 public boolean onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, argument
58 public void sendAccessibilityEvent(Object delegate, View host, in argument
59 sendAccessibilityEventUnchecked(Object delegate, View host, AccessibilityEvent event) argument
61 getAccessibilityNodeProvider(Object delegate, View host) argument
63 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
78 dispatchPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
84 onInitializeAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
90 onInitializeAccessibilityNodeInfo(Object delegate, View host, AccessibilityNodeInfoCompat info) argument
96 onPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
102 onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, AccessibilityEvent event) argument
108 sendAccessibilityEvent(Object delegate, View host, int eventType) argument
113 sendAccessibilityEventUnchecked(Object delegate, View host, AccessibilityEvent event) argument
119 getAccessibilityNodeProvider(Object delegate, View host) argument
125 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
182 dispatchPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
189 onInitializeAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
195 onInitializeAccessibilityNodeInfo(Object delegate, View host, AccessibilityNodeInfoCompat info) argument
202 onPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
208 onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, AccessibilityEvent event) argument
215 sendAccessibilityEvent(Object delegate, View host, int eventType) argument
220 sendAccessibilityEventUnchecked(Object delegate, View host, AccessibilityEvent event) argument
285 getAccessibilityNodeProvider(Object delegate, View host) argument
296 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
347 sendAccessibilityEvent(View host, int eventType) argument
369 sendAccessibilityEventUnchecked(View host, AccessibilityEvent event) argument
390 dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
410 onPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
430 onInitializeAccessibilityEvent(View host, AccessibilityEvent event) argument
449 onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) argument
472 onRequestSendAccessibilityEvent(ViewGroup host, View child, AccessibilityEvent event) argument
491 getAccessibilityNodeProvider(View host) argument
511 performAccessibilityAction(View host, int action, Bundle args) argument
[all...]
/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/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/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/view/
H A DIInputFilter.aidl29 void install(IInputFilterHost host);
/frameworks/base/packages/services/PacProcessor/com/android/net/
H A DIProxyService.aidl21 String resolvePacFile(String host, String url);
/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/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceRecyclerViewAccessibilityDelegate.java49 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
50 mDefaultItemDelegate.onInitializeAccessibilityNodeInfo(host, info);
51 int position = mRecyclerView.getChildAdapterPosition(host);
68 public boolean performAccessibilityAction(View host, int action, Bundle args) {
70 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.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 DNetwork.java97 * Operates the same as {@code InetAddress.getAllByName} except that host
100 * @param host the hostname or literal IP string to be resolved.
101 * @return the array of addresses associated with the specified host.
104 public InetAddress[] getAllByName(String host) throws UnknownHostException { argument
105 return InetAddress.getAllByNameOnNet(host, netId);
109 * Operates the same as {@code InetAddress.getByName} except that host
112 * @param host
114 * @return the {@code InetAddress} instance representing the host.
118 public InetAddress getByName(String host) throws UnknownHostException { argument
119 return InetAddress.getByNameOnNet(host, netI
133 connectToHost(String host, int port, SocketAddress localAddress) argument
152 createSocket(String host, int port, InetAddress localHost, int localPort) argument
166 createSocket(InetAddress host, int port) argument
173 createSocket(String host, int port) 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
/frameworks/base/libs/usb/tests/accessorytest/
H A DAndroid.mk3 # Build for Linux host only
/frameworks/compile/mclinker/lib/ADT/
H A DAndroid.mk6 # For the host
/frameworks/compile/mclinker/lib/Target/AArch64/TargetInfo/
H A DAndroid.mk6 # For the host
/frameworks/compile/mclinker/lib/Target/ARM/TargetInfo/
H A DAndroid.mk6 # For the host
/frameworks/compile/mclinker/lib/Target/Mips/TargetInfo/
H A DAndroid.mk6 # For the host
/frameworks/compile/mclinker/lib/Target/X86/TargetInfo/
H A DAndroid.mk6 # For the host

Completed in 3349 milliseconds

12345678