/frameworks/support/v4/java/android/support/v4/view/ |
D | AccessibilityDelegateCompat.java | 33 public boolean dispatchPopulateAccessibilityEvent(Object delegate, View host, in dispatchPopulateAccessibilityEvent() argument 35 public void onInitializeAccessibilityEvent(Object delegate, View host, in onInitializeAccessibilityEvent() argument 37 public void onInitializeAccessibilityNodeInfo(Object delegate, View host, in onInitializeAccessibilityNodeInfo() argument 39 public void onPopulateAccessibilityEvent(Object delegate, View host, in onPopulateAccessibilityEvent() argument 41 public boolean onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, in onRequestSendAccessibilityEvent() argument 43 public void sendAccessibilityEvent(Object delegate, View host, int eventType); in sendAccessibilityEvent() argument 44 public void sendAccessibilityEventUnchecked(Object delegate, View host, in sendAccessibilityEventUnchecked() argument 57 public boolean dispatchPopulateAccessibilityEvent(Object delegate, View host, in dispatchPopulateAccessibilityEvent() argument 62 public void onInitializeAccessibilityEvent(Object delegate, View host, in onInitializeAccessibilityEvent() argument 67 public void onInitializeAccessibilityNodeInfo(Object delegate, View host, in onInitializeAccessibilityNodeInfo() argument [all …]
|
/frameworks/support/v4/ics/android/support/v4/view/ |
D | AccessibilityDelegateCompatIcs.java | 31 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event); in dispatchPopulateAccessibilityEvent() argument 32 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event); in onInitializeAccessibilityEvent() argument 33 public void onInitializeAccessibilityNodeInfo(View host, Object info); in onInitializeAccessibilityNodeInfo() argument 34 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event); in onPopulateAccessibilityEvent() argument 35 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child, in onRequestSendAccessibilityEvent() argument 37 public void sendAccessibilityEvent(View host, int eventType); in sendAccessibilityEvent() argument 38 public void sendAccessibilityEventUnchecked(View host, AccessibilityEvent event); in sendAccessibilityEventUnchecked() argument 48 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) { in newAccessibilityDelegateBridge() 49 return bridge.dispatchPopulateAccessibilityEvent(host, event); in newAccessibilityDelegateBridge() 53 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) { in newAccessibilityDelegateBridge() argument [all …]
|
/frameworks/base/core/java/android/net/http/ |
D | RequestQueue.java | 160 ConnectionThread getThread(HttpHost host) { in getThread() argument 165 if (connection != null && connection.mHost.equals(host)) { in getThread() 173 public Connection getConnection(Context context, HttpHost host) { in getConnection() argument 174 host = RequestQueue.this.determineHost(host); in getConnection() 175 Connection con = mIdleCache.getConnection(host); in getConnection() 178 con = Connection.getConnection(mContext, host, mProxyHost, in getConnection() 267 String host = Proxy.getHost(mContext); in setProxyConfig() local 268 if (HttpLog.LOGV) HttpLog.v("RequestQueue.setProxyConfig " + host); in setProxyConfig() 269 if (host == null) { in setProxyConfig() 273 mProxyHost = new HttpHost(host, Proxy.getPort(mContext), "http"); in setProxyConfig() [all …]
|
D | IdleCache.java | 67 HttpHost host, Connection connection) { in cacheConnection() argument 72 HttpLog.v("IdleCache size " + mCount + " host " + host); in cacheConnection() 80 entry.mHost = host; in cacheConnection() 97 synchronized Connection getConnection(HttpHost host) { in getConnection() argument 104 if (eHost != null && eHost.equals(host)) { in getConnection()
|
D | RequestFeeder.java | 31 Request getRequest(HttpHost host); in getRequest() argument 36 boolean haveRequest(HttpHost host); in haveRequest() argument
|
/frameworks/compile/linkloader/tests/images/ |
D | gen-test-elf.sh | 19 clang -integrated-as -std=c89 -c test.c -o test-tegra2.o -ccc-host-triple armv7-none-linux-gnueabi … 20 clang -integrated-as -std=c89 -c test.c -o test-arm.o -ccc-host-triple armv7-none-linux-gnueabi 21 clang -integrated-as -std=c89 -c test.c -o test-x86_32.o -ccc-host-triple i686-none-linux 22 clang -integrated-as -std=c89 -c test.c -o test-x86_64.o -ccc-host-triple x86_64-none-linux 24 clang -integrated-as -std=c89 -c simple-test.c -o simple-test-arm.o -ccc-host-triple armv7-none-lin… 25 clang -integrated-as -std=c89 -c simple-test.c -o simple-test-x86_32.o -ccc-host-triple i686-none-l… 26 clang -integrated-as -std=c89 -c simple-test.c -o simple-test-x86_64.o -ccc-host-triple x86_64-none… 28 clang -integrated-as -std=c89 -c rodata-test.c -o rodata-test-tegra2.o -ccc-host-triple armv7-none-… 29 clang -integrated-as -std=c89 -c rodata-test.c -o rodata-test-arm.o -ccc-host-triple armv7-none-lin… 30 clang -integrated-as -std=c89 -c rodata-test.c -o rodata-test-x86_32.o -ccc-host-triple i686-none-l… [all …]
|
/frameworks/base/core/java/android/net/ |
D | Proxy.java | 111 String host = ""; in getProxy() local 114 host = uri.getHost(); in getProxy() 117 if (!isLocalHost(host)) { in getProxy() 127 if (!proxyProperties.isExcluded(host)) { in getProxy() 181 String host = System.getProperty("http.proxyHost"); in getDefaultHost() local 182 if (TextUtils.isEmpty(host)) return null; in getDefaultHost() 183 return host; in getDefaultHost() 227 private static final boolean isLocalHost(String host) { in isLocalHost() argument 228 if (host == null) { in isLocalHost() 232 if (host != null) { in isLocalHost() [all …]
|
D | SSLCertificateSocketFactory.java | 272 public Socket createSocket(Socket k, String host, int port, boolean close) throws IOException { in createSocket() argument 273 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(k, host, port, close); in createSocket() 276 verifyHostname(s, host); in createSocket() 333 public Socket createSocket(String host, int port, InetAddress localAddr, int localPort) in createSocket() argument 336 host, port, localAddr, localPort); in createSocket() 339 verifyHostname(s, host); in createSocket() 351 public Socket createSocket(String host, int port) throws IOException { in createSocket() argument 352 OpenSSLSocketImpl s = (OpenSSLSocketImpl) getDelegate().createSocket(host, port); in createSocket() 355 verifyHostname(s, host); in createSocket()
|
D | RouteInfo.java | 79 public static RouteInfo makeHostRoute(InetAddress host) { in makeHostRoute() argument 80 return makeHostRoute(host, null); in makeHostRoute() 83 public static RouteInfo makeHostRoute(InetAddress host, InetAddress gateway) { in makeHostRoute() argument 84 if (host == null) return null; in makeHostRoute() 86 if (host instanceof Inet4Address) { in makeHostRoute() 87 return new RouteInfo(new LinkAddress(host, 32), gateway); in makeHostRoute() 89 return new RouteInfo(new LinkAddress(host, 128), gateway); in makeHostRoute()
|
D | ProxyProperties.java | 40 public ProxyProperties(String host, int port, String exclList) { in ProxyProperties() argument 41 mHost = host; in ProxyProperties() 46 private ProxyProperties(String host, int port, String exclList, String[] parsedExclList) { in ProxyProperties() argument 47 mHost = host; in ProxyProperties() 201 String host = null; 204 host = in.readString(); 210 new ProxyProperties(host, port, exclList, parsedExclList);
|
/frameworks/base/core/java/android/webkit/ |
D | SslCertLookupTable.java | 48 String host; in setIsAllowed() local 50 host = new URL(sslError.getUrl()).getHost(); in setIsAllowed() 54 table.putInt(host, sslError.getPrimaryError()); in setIsAllowed() 60 String host; in isAllowed() local 62 host = new URL(sslError.getUrl()).getHost(); in isAllowed() 66 return table.containsKey(host) && sslError.getPrimaryError() <= table.getInt(host); in isAllowed()
|
D | SslErrorHandlerImpl.java | 157 final String host = loader.host(); in checkSslPrefTable() local 161 assert host != null; in checkSslPrefTable() 165 if (mSslPrefTable.containsKey(host) && primary <= mSslPrefTable.getInt(host)) { in checkSslPrefTable() 259 String host = loader.host(); in handleSslErrorResponse() local 262 assert host != null; in handleSslErrorResponse() 265 boolean hasKey = mSslPrefTable.containsKey(host); in handleSslErrorResponse() 266 if (!hasKey || primary > mSslPrefTable.getInt(host)) { in handleSslErrorResponse() 267 mSslPrefTable.putInt(host, primary); in handleSslErrorResponse()
|
/frameworks/base/services/java/com/android/server/ |
D | AppWidgetService.java | 116 Host host; field in AppWidgetService.AppWidgetId 244 private void dumpHost(Host host, int index, PrintWriter pw) { in dumpHost() argument 246 pw.print(host.hostId); pw.print(' '); in dumpHost() 247 pw.print(host.packageName); pw.print('/'); in dumpHost() 248 pw.print(host.uid); pw.println(':'); in dumpHost() 249 pw.print(" callbacks="); pw.println(host.callbacks); in dumpHost() 250 pw.print(" instances.size="); pw.print(host.instances.size()); in dumpHost() 251 pw.print(" zombie="); pw.println(host.zombie); in dumpHost() 258 pw.print(id.host.hostId); pw.print(' '); in dumpAppWidgetId() 259 pw.print(id.host.packageName); pw.print('/'); in dumpAppWidgetId() [all …]
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/ |
D | AdbUtils.java | 43 public static String convert(int host) { in convert() argument 44 return ((host >> 24) & 0xFF) + "." in convert() 45 + ((host >> 16) & 0xFF) + "." in convert() 46 + ((host >> 8) & 0xFF) + "." in convert() 47 + (host & 0xFF); in convert() 58 public static int resolve(String host) throws IOException { in resolve() argument 66 String cmd = "dns:" + host; in resolve()
|
D | ForwardService.java | 88 String host = null; in getForwardHostAddr() local 94 host = hostReader.readLine(); in getForwardHostAddr() 95 Log.v(LOGTAG, "read forward host from file: " + host); in getForwardHostAddr() 108 if (host == null || host.length() == 0) in getForwardHostAddr() 109 host = DEFAULT_TEST_HOST; in getForwardHostAddr() 111 addr = AdbUtils.resolve(host); in getForwardHostAddr()
|
/frameworks/base/docs/html/guide/topics/usb/ |
D | index.jd | 11 <li><a href="{@docRoot}guide/topics/usb/host.html">USB Host</a></li> 17 implements the Android accessory protocol) through two modes: USB accessory and USB host. In USB 20 readers; and much more. This gives Android-powered devices that do not have host capabilities the 24 host mode, the Android-powered device acts as the host. Examples of devices include digital 30 host mode, it acts as the USB host and powers the bus. When the Android-powered device is in USB 32 host and powers the bus.</p><img src="{@docRoot}images/usb-host-accessory.png" alt=""> 36 <p>USB accessory and host modes are directly supported in Android 3.1 (API level 12) or newer 41 <p class="note"><strong>Note:</strong> Support for USB host and accessory modes are ultimately 43 support USB host and accessory through a <a href= 46 "{@docRoot}guide/topics/usb/host.html">host</a> documentation for more details.</p> [all …]
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | data-element.jd | 8 <dd><pre class="stx"><data android:<a href="#host">host</a>="<i>string</i>" 26 <p style="margin-left: 2em">{@code scheme://host:port/path} <i>or</i> 33 <code><a href="{@docRoot}guide/topics/manifest/data-element.html#host">host</a></code> is not speci… 44 <data android:scheme="something" android:host="project.example.com" /> 52 <data android:host="project.example.com" /> 73 <dt><a name="host"></a>{@code android:host}</dt> 74 <dd>The host part of a URI authority. This attribute is meaningless 78 <p class="note">Note: host name matching in the Android framework is 80 host names using lowercase letters.</p> 128 <code><a href="#scheme">scheme</a></code> and <code><a href="#host">host</a></code> [all …]
|
/frameworks/base/tests/CoreTests/android/core/ |
D | SSLSocketTest.java | 78 private void fetch(SSLSocketFactory socketFactory, String host, int port, in fetch() argument 81 InetSocketAddress address = new InetSocketAddress(host, port); in fetch() 102 "GET https://" + host + path + " HTTP/1.1"); in fetch() 105 writer.println("GET https://" + host + path + " HTTP/1.1\r"); in fetch() 106 writer.println("Host: " + host + "\r"); in fetch() 180 private void fetch(String host, int port, boolean secure, String path, in fetch() argument 183 fetch(clientFactory, host, port, secure, path, outerLoop, innerLoop, in fetch() 988 public byte[] getSessionData(String host, int port) { in getSessionData() argument 989 ops.add("get " + host); in getSessionData() 990 return sessions.get(host); in getSessionData() [all …]
|
/frameworks/base/core/java/android/content/ |
D | IntentFilter.java | 635 public AuthorityEntry(String host, String port) { in AuthorityEntry() argument 636 mOrigHost = host; in AuthorityEntry() 637 mWild = host.length() > 0 && host.charAt(0) == '*'; in AuthorityEntry() 638 mHost = mWild ? host.substring(1).intern() : host; in AuthorityEntry() 675 String host = data.getHost(); in match() local 676 if (host == null) { in match() 680 "Match host " + host + ": " + mHost); in match() 682 if (host.length() < mHost.length()) { in match() 685 host = host.substring(host.length()-mHost.length()); in match() 687 if (host.compareToIgnoreCase(mHost) != 0) { in match() [all …]
|
/frameworks/base/core/tests/hosttests/ |
D | README | 1 This dir contains tests which run on a host machine, and test aspects of 5 runtest framework-core-host
|
/frameworks/base/core/jni/android/graphics/ |
D | NinePatchPeeker.h | 28 NinePatchPeeker(SkImageDecoder* host) { in NinePatchPeeker() argument 30 fHost = host; in NinePatchPeeker()
|
/frameworks/base/media/libstagefright/rtsp/ |
D | ARTSPConnection.cpp | 130 const char *url, AString *host, unsigned *port, AString *path, in ParseURL() argument 132 host->clear(); in ParseURL() 145 host->setTo(&url[7]); in ParseURL() 148 host->setTo(&url[7], slashPos - &url[7]); in ParseURL() 152 ssize_t atPos = host->find("@"); in ParseURL() 157 AString userPass(*host, 0, atPos); in ParseURL() 158 host->erase(0, atPos + 1); in ParseURL() 170 const char *colonPos = strchr(host->c_str(), ':'); in ParseURL() 180 size_t colonOffset = colonPos - host->c_str(); in ParseURL() 181 size_t trailing = host->size() - colonOffset; in ParseURL() [all …]
|
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ |
D | AdditionalTextOutput.java | 55 String host = ""; in appendExceededDbQuotaMessage() local 61 host = url.getHost(); in appendExceededDbQuotaMessage() 72 output.append(protocol + ", " + host + ", " + port + "} "); in appendExceededDbQuotaMessage()
|
/frameworks/compile/libbcc/lib/ScriptCRT/ |
D | build_clcore.sh | 12 clang -ccc-host-triple armv7-none-linux-gnueabi -I${scriptc_path} -I${clang_header_path} -c -std=c9… 17 clang -ccc-host-triple armv7-none-linux-gnueabi -I${scriptc_path} -I${clang_header_path} -c -std=c9…
|
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/ |
D | WebView.java | 82 public void savePassword(String host, String username, String password) { in savePassword() argument 85 public void setHttpAuthUsernamePassword(String host, String realm, in setHttpAuthUsernamePassword() argument 89 public String[] getHttpAuthUsernamePassword(String host, String realm) { in getHttpAuthUsernamePassword() argument
|