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

123456

/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.java36 public boolean dispatchPopulateAccessibilityEvent(Object delegate, View host, argument
38 public void onInitializeAccessibilityEvent(Object delegate, View host, argument
40 public void onInitializeAccessibilityNodeInfo(Object delegate, View host, argument
42 public void onPopulateAccessibilityEvent(Object delegate, View host, argument
44 public boolean onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, argument
46 public void sendAccessibilityEvent(Object delegate, View host, int eventType); argument
47 public void sendAccessibilityEventUnchecked(Object delegate, View host, argument
50 View host);
51 public boolean performAccessibilityAction(Object delegate, View host, int action, argument
66 public boolean dispatchPopulateAccessibilityEvent(Object delegate, View host, argument
49 getAccessibilityNodeProvider(Object delegate, View host) argument
72 onInitializeAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
78 onInitializeAccessibilityNodeInfo(Object delegate, View host, AccessibilityNodeInfoCompat info) argument
84 onPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
90 onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, AccessibilityEvent event) argument
96 sendAccessibilityEvent(Object delegate, View host, int eventType) argument
101 sendAccessibilityEventUnchecked(Object delegate, View host, AccessibilityEvent event) argument
107 getAccessibilityNodeProvider(Object delegate, View host) argument
113 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
170 dispatchPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
177 onInitializeAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
183 onInitializeAccessibilityNodeInfo(Object delegate, View host, AccessibilityNodeInfoCompat info) argument
190 onPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
196 onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, AccessibilityEvent event) argument
203 sendAccessibilityEvent(Object delegate, View host, int eventType) argument
208 sendAccessibilityEventUnchecked(Object delegate, View host, AccessibilityEvent event) argument
273 getAccessibilityNodeProvider(Object delegate, View host) argument
284 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
335 sendAccessibilityEvent(View host, int eventType) argument
357 sendAccessibilityEventUnchecked(View host, AccessibilityEvent event) argument
378 dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
398 onPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
418 onInitializeAccessibilityEvent(View host, AccessibilityEvent event) argument
437 onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) argument
460 onRequestSendAccessibilityEvent(ViewGroup host, View child, AccessibilityEvent event) argument
479 getAccessibilityNodeProvider(View host) argument
499 performAccessibilityAction(View host, int action, Bundle args) argument
[all...]
/frameworks/base/core/java/android/net/http/
H A DRequestFeeder.java31 Request getRequest(HttpHost host); argument
34 * @return true if a request for this host is available
36 boolean haveRequest(HttpHost host); argument
H A DRequestQueue.java50 * Requests, indexed by HttpHost (scheme, host, port)
156 ConnectionThread getThread(HttpHost host) { argument
161 if (connection != null && connection.mHost.equals(host)) {
169 public Connection getConnection(Context context, HttpHost host) { argument
170 host = RequestQueue.this.determineHost(host);
171 Connection con = mIdleCache.getConnection(host);
174 con = Connection.getConnection(mContext, host, mProxyHost,
263 String host = Proxy.getHost(mContext);
264 if (HttpLog.LOGV) HttpLog.v("RequestQueue.setProxyConfig " + host);
355 getRequest(HttpHost host) argument
358 haveRequest(HttpHost host) argument
393 determineHost(HttpHost host) argument
459 getRequest(HttpHost host) argument
476 haveRequest(HttpHost host) argument
539 getConnection(Context context, HttpHost host) argument
[all...]
H A DX509TrustManagerExtensions.java60 * description of the chain and authType parameters. The final parameter, host, should be the
67 String host) throws CertificateException {
68 return mDelegate.checkServerTrusted(chain, authType, host);
66 checkServerTrusted(X509Certificate[] chain, String authType, String host) argument
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerViewAccessibilityDelegate.java39 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
40 if (super.performAccessibilityAction(host, action, args)) {
51 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
52 super.onInitializeAccessibilityNodeInfo(host, info);
60 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) { argument
61 super.onInitializeAccessibilityEvent(host, event);
63 if (host instanceof RecyclerView) {
64 RecyclerView rv = (RecyclerView) host;
77 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
78 super.onInitializeAccessibilityNodeInfo(host, inf
[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/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/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.java52 * though if the proxy is undefined the host string
105 * @param ctx A Context used to get the settings for the proxy host.
107 * @return Proxy (java.net) object containing the host name. If the
108 * user did not set a hostname it returns the default host.
109 * A null value means that no host is to be used.
113 String host = "";
114 if ((url != null) && !isLocalHost(host)) {
129 * Return the proxy host set by the user.
130 * @param ctx A Context used to get the settings for the proxy host.
131 * @return String containing the host nam
220 isLocalHost(String host) argument
281 setHttpProxySystemProperty(String host, String port, String exclList, Uri pacFileUrl) argument
[all...]
H A DNetwork.java98 * Operates the same as {@code InetAddress.getAllByName} except that host
101 * @param host the hostname or literal IP string to be resolved.
102 * @return the array of addresses associated with the specified host.
105 public InetAddress[] getAllByName(String host) throws UnknownHostException { argument
106 return InetAddress.getAllByNameOnNet(host, netId);
110 * Operates the same as {@code InetAddress.getByName} except that host
113 * @param host
115 * @return the {@code InetAddress} instance representing the host.
119 public InetAddress getByName(String host) throws UnknownHostException { argument
120 return InetAddress.getByNameOnNet(host, netI
134 connectToHost(String host, int port, SocketAddress localAddress) argument
153 createSocket(String host, int port, InetAddress localHost, int localPort) argument
167 createSocket(InetAddress host, int port) argument
174 createSocket(String host, int port) argument
[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/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/CodeGen/
H A DAndroid.mk7 # 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
/frameworks/compile/mclinker/
H A Dmcld.mk5 MCLD_HOST_BUILD_MK := $(MCLD_ROOT_PATH)/mcld-host-build.mk
H A Dmcld-host-build.mk32 $(LLVM_ROOT_PATH)/host/include \
39 $(LLVM_ROOT_PATH)/host/include \
/frameworks/compile/libbcc/bcinfo/tools/
H A DAndroid.mk21 # Executable for host
46 include $(LLVM_ROOT_PATH)/llvm-host-build.mk
/frameworks/compile/libbcc/
H A Dlibbcc.mk33 LIBBCC_HOST_BUILD_MK := $(LIBBCC_ROOT_PATH)/libbcc-host-build.mk

Completed in 6743 milliseconds

123456