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

12345

/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.java54 * Requests, indexed by HttpHost (scheme, host, port)
160 ConnectionThread getThread(HttpHost host) { argument
165 if (connection != null && connection.mHost.equals(host)) {
173 public Connection getConnection(Context context, HttpHost host) { argument
174 host = RequestQueue.this.determineHost(host);
175 Connection con = mIdleCache.getConnection(host);
178 con = Connection.getConnection(mContext, host, mProxyHost,
267 String host = Proxy.getHost(mContext);
268 if (HttpLog.LOGV) HttpLog.v("RequestQueue.setProxyConfig " + host);
359 getRequest(HttpHost host) argument
362 haveRequest(HttpHost host) argument
397 determineHost(HttpHost host) argument
463 getRequest(HttpHost host) argument
480 haveRequest(HttpHost host) argument
543 getConnection(Context context, HttpHost host) argument
[all...]
H A DX509TrustManagerExtensions.java56 * description of the chain and authType parameters. The final parameter, host, should be the
63 String host) throws CertificateException {
64 return mDelegate.checkServerTrusted(chain, authType, host);
62 checkServerTrusted(X509Certificate[] chain, String authType, String host) argument
H A DIdleCache.java67 HttpHost host, Connection connection) {
72 HttpLog.v("IdleCache size " + mCount + " host " + host);
80 entry.mHost = host;
97 synchronized Connection getConnection(HttpHost host) { argument
104 if (eHost != null && eHost.equals(host)) {
66 cacheConnection( HttpHost host, Connection connection) argument
H A DHttpConnection.java37 HttpConnection(Context context, HttpHost host, argument
39 super(context, host, requestFeeder);
/frameworks/base/core/java/android/webkit/
H A DSslCertLookupTable.java33 // We store the most severe error we're willing to allow for each host.
48 String host;
50 host = new URL(sslError.getUrl()).getHost();
54 table.putInt(host, sslError.getPrimaryError());
57 // We allow the decision to be re-used if it's for the same host and is for
60 String host;
62 host = new URL(sslError.getUrl()).getHost();
66 return table.containsKey(host) && sslError.getPrimaryError() <= table.getInt(host);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DObscureSpeechDelegate.java48 public void sendAccessibilityEvent(View host, int eventType) { argument
49 super.sendAccessibilityEvent(host, eventType);
56 host.announceForAccessibility(host.getContext().getString(
62 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event) { argument
63 super.onPopulateAccessibilityEvent(host, event);
68 event.setContentDescription(host.getContext().getString(
74 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
75 super.onInitializeAccessibilityNodeInfo(host, info);
78 final Context ctx = host
[all...]
/frameworks/base/core/java/android/view/
H A DIInputFilter.aidl29 void install(IInputFilterHost host);
/frameworks/base/core/jni/android/graphics/
H A DNinePatchPeeker.h28 NinePatchPeeker(SkImageDecoder* host) { argument
29 // the host lives longer than we do, so a raw ptr is safe
30 fHost = host;
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DAdbUtils.java40 * @param host IP address in integer format
43 public static String convert(int host) { argument
44 return ((host >> 24) & 0xFF) + "."
45 + ((host >> 16) & 0xFF) + "."
46 + ((host >> 8) & 0xFF) + "."
47 + (host & 0xFF);
54 * @param host DNS name
58 public static int resolve(String host) throws IOException { argument
66 String cmd = "dns:" + host;
109 * @param remoteAddress IP address of the host t
[all...]
H A DForwardService.java88 String host = null;
94 host = hostReader.readLine();
95 Log.v(LOGTAG, "read forward host from file: " + host);
97 Log.v(LOGTAG, "cannot read forward host from file", ioe);
108 if (host == null || host.length() == 0)
109 host = DEFAULT_TEST_HOST;
111 addr = AdbUtils.resolve(host);
/frameworks/base/core/java/android/net/
H A DProxy.java69 * though if the proxy is undefined the host string
103 * @param ctx A Context used to get the settings for the proxy host.
105 * @return Proxy (java.net) object containing the host name. If the
106 * user did not set a hostname it returns the default host.
107 * A null value means that no host is to be used.
111 String host = "";
114 host = uri.getHost();
117 if (!isLocalHost(host)) {
127 if (!proxyProperties.isExcluded(host)) {
137 * Return the proxy host se
227 isLocalHost(String host) argument
337 setHttpProxySystemProperty(String host, String port, String exclList) argument
[all...]
/frameworks/compile/mclinker/lib/ADT/
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
/frameworks/compile/slang/BitWriter_2_9/
H A DAndroid.mk13 # For the host
/frameworks/compile/slang/BitWriter_2_9_func/
H A DAndroid.mk13 # For the host
/frameworks/compile/libbcc/bcinfo/tools/
H A DAndroid.mk21 # Executable for host
46 include $(LLVM_ROOT_PATH)/llvm-host-build.mk
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Dbuild_clcore.sh12 clang -ccc-host-triple armv7-none-linux-gnueabi -I${scriptc_path} -I${clang_header_path} -c -std=c99 -O3 rs_cl.c -emit-llvm -o rs_cl.bc
17 clang -ccc-host-triple armv7-none-linux-gnueabi -I${scriptc_path} -I${clang_header_path} -c -std=c99 -O3 rs_core.c -emit-llvm -o rs_core.bc
/frameworks/compile/libbcc/
H A Dlibbcc.mk33 LIBBCC_HOST_BUILD_MK := $(LIBBCC_ROOT_PATH)/libbcc-host-build.mk
/frameworks/base/services/java/com/android/server/
H A DAppWidgetServiceImpl.java123 Host host; field in class:AppWidgetServiceImpl.AppWidgetId
336 private void dumpHost(Host host, int index, PrintWriter pw) { argument
338 pw.print(host.hostId); pw.print(' ');
339 pw.print(host.packageName); pw.print('/');
340 pw.print(host.uid); pw.println(':');
341 pw.print(" callbacks="); pw.println(host.callbacks);
342 pw.print(" instances.size="); pw.print(host.instances.size());
343 pw.print(" zombie="); pw.println(host.zombie);
350 pw.print(id.host.hostId); pw.print(' ');
351 pw.print(id.host
483 deleteHostLocked(Host host) argument
1211 pruneHostLocked(Host host) argument
[all...]
/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
H A DAndroid.mk3 # Build for Linux (desktop) host
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DAndroid.mk9 # For the host

Completed in 650 milliseconds

12345