HomeSort by relevance Sort by last modified time
    Searched full:host (Results 51 - 75 of 2243) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/libcore/logging/src/main/java/java/util/logging/
SocketHandler.java 45 * <li>java.util.logging.SocketHandler.host specifies the name of the host that
69 * the log manager, including the host name and port number. Default
73 * if failed to connect to the specified host and port.
75 * if the host name or port number is illegal.
83 "java.util.logging.SocketHandler.host"), LogManager //$NON-NLS-1$
89 * Constructs a {@code SocketHandler} object using the specified host name
93 * @param host
94 * the host name
98 * if failed to connect to the specified host and port
    [all...]
  /dalvik/libnativehelper/
Android.mk 19 # Common definitions for host and device.
71 # Build for the host.
80 LOCAL_WHOLE_STATIC_LIBRARIES := $(static_libraries:%=%-host)
91 # liblog and libcutils are static for host.
95 LOCAL_MODULE := libnativehelper-host
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2109DomainHandler.java 69 String host = origin.getHost(); local
74 if (!domain.equals(host)) {
79 + "\" does not match the host \""
80 + host + "\"");
95 host = host.toLowerCase(Locale.ENGLISH);
96 if (!host.endsWith(domain)) {
99 + "\". Domain of origin: \"" + host + "\"");
101 // host minus domain may not contain any dots
102 String hostWithoutDomain = host.substring(0, host.length() - domain.length())
118 String host = origin.getHost(); local
    [all...]
BasicDomainHandler.java 70 // request-host and domain must be identical for the cookie to sent
72 String host = origin.getHost(); local
77 if (host.contains(".")) {
81 // domain must match host
82 if (!host.endsWith(domain)) {
86 if (!host.equals(domain)) {
89 + "\". Domain of origin: \"" + host + "\"");
93 if (!host.equals(domain)) {
96 + "\". Domain of origin: \"" + host + "\"");
108 String host = origin.getHost() local
    [all...]
  /frameworks/base/core/java/android/net/http/
RequestQueue.java 54 * Requests, indexed by HttpHost (scheme, host, port)
160 ConnectionThread getThread(HttpHost host) {
165 if (connection != null && connection.mHost.equals(host)) {
173 public Connection getConnection(Context context, HttpHost host) {
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); local
268 if (HttpLog.LOGV) HttpLog.v("RequestQueue.setProxyConfig " + host);
378 HttpHost host = new HttpHost(uri.mHost, uri.mPort, uri.mScheme); local
499 HttpHost host = request.mProxyHost == null ? request.mHost : request.mProxyHost; local
    [all...]
  /development/testrunner/
android_build.py 51 """Identify the host os and arch.
69 logger.Log("Error: Could not get host's OS and/or ARCH")
75 """Compute the full pathname to the host binary directory.
77 Typically $ANDROID_BUILD_TOP/out/host/linux-x86/bin.
83 The absolute file path of the Android host binary directory.
86 AbortError: if Android host binary directory could not be found.
89 path = os.path.join(GetTop(), "out", "host", os_arch, "bin")
91 logger.Log("Error: Host bin path could not be found %s" % path)
138 """Returns the full pathname to the host java library output directory.
140 Typically $ANDROID_BUILD_TOP/out/host/<host_os>/framework
    [all...]
  /hardware/ti/wlan/wl1271/TWD/FirmwareApi/
public_host_int.h 38 DESCRIPTION: Contains the host interface fw interrupt structure in use.
51 Host Interrupt Register (WiLink -> Host)
59 #define ACX_INTR_HW_AVAILABLE BIT_5 /* Signaling the host on HW wakeup */
69 Interrupt Trigger Register (Host -> WiLink)
75 #define INTR_TRIG_CMD BIT_0 /* Host Command Interrupt. Setting this bit masks*/
76 /* the interrupt that the host issues to inform*/
80 #define INTR_TRIG_EVENT_ACK BIT_1 /* Host Event Acknowlegde Interrupt. The host */
87 #define INTR_TRIG_RX_PROC BIT_3 /* The host sets this bit to inform the FW that *
    [all...]
  /system/wlan/ti/wilink_6_1/TWD/FirmwareApi/
public_host_int.h 38 DESCRIPTION: Contains the host interface fw interrupt structure in use.
51 Host Interrupt Register (WiLink -> Host)
59 #define ACX_INTR_HW_AVAILABLE BIT_5 /* Signaling the host on HW wakeup */
69 Interrupt Trigger Register (Host -> WiLink)
75 #define INTR_TRIG_CMD BIT_0 /* Host Command Interrupt. Setting this bit masks*/
76 /* the interrupt that the host issues to inform*/
80 #define INTR_TRIG_EVENT_ACK BIT_1 /* Host Event Acknowlegde Interrupt. The host */
87 #define INTR_TRIG_RX_PROC BIT_3 /* The host sets this bit to inform the FW that *
    [all...]
  /dalvik/libcore/luni/src/main/java/java/net/
DatagramPacket.java 25 * such as its source or destination host.
83 * {@code aPort} of the address {@code host}. The {@code length} must be
93 * @param host
94 * the address of the target host.
96 * the port of the target host.
99 InetAddress host, int aPort) {
102 address = host;
107 * {@code aPort} of the address {@code host}. The {@code length} must be
115 * @param host
116 * the address of the target host
    [all...]
InetSocketAddress.java 75 * hostname {@code host}. The hostname is tried to be resolved and cannot be
81 * @param host
86 * host name.
88 public InetSocketAddress(String host, int port) {
89 this(host, port, true);
96 InetSocketAddress(String host, int port, boolean needResolved) {
97 if (host == null || port < 0 || port > 65535) {
100 hostname = host;
106 smgr.checkConnect(host, port);
125 * @param host
183 String host; local
    [all...]
URLStreamHandler.java 108 String host = u.getHost(); local
164 host = parseString.substring(hostIdx, hostEnd);
166 host = parseString.substring(hostIdx, portIdx);
225 if (host == null) {
226 host = ""; //$NON-NLS-1$
234 setURL(u, u.getProtocol(), host, port, authority, userInfo, file,
246 * @param host
247 * the host name.
258 protected void setURL(URL u, String protocol, String host, int port,
263 u.set(protocol, host, port, file, ref)
373 String host = url.getHost(); local
460 String host = url.getHost(); local
    [all...]
  /external/apache-http/src/org/apache/http/conn/
HttpHostConnectException.java 45 private final HttpHost host; field in class:HttpHostConnectException
47 public HttpHostConnectException(final HttpHost host, final ConnectException cause) {
48 super("Connection to " + host + " refused");
49 this.host = host;
54 return this.host;
  /external/webkit/WebCore/platform/qt/
KURLQt.cpp 52 int host = m_string.find("://"); local
53 if (host != -1) {
54 host += 3;
56 path = m_string.find('/', host);
76 // special case: if this is the host part, don't encode
78 if (host == -1 || (path != -1 && i >= path))
  /frameworks/base/core/java/android/webkit/
WebViewClient.java 27 * Give the host application a chance to take over the control when a new
31 * means the host application handles the url, while return false means the
36 * @return True if the host application wants to leave the current WebView
44 * Notify the host application that a page has started loading. This method
59 * Notify the host application that a page has finished loading. This method
71 * Notify the host application that the WebView will load the resource
81 * Notify the host application that there have been an excessive number of
82 * HTTP redirects. As the host application if it would like to continue
87 * @param cancelMsg The message to send if the host wants to cancel
88 * @param continueMsg The message to send if the host wants to continu
    [all...]
  /bionic/libc/netbsd/net/
getnameinfo.c 110 int getnameinfo(const struct sockaddr* sa, socklen_t salen, char* host, size_t hostlen, char* serv, size_t servlen, int flags)
115 return getnameinfo_inet(sa, salen, host, hostlen,
119 return getnameinfo_link(sa, salen, host, hostlen,
133 getnameinfo_inet(sa, salen, host, hostlen, serv, servlen, flags)
136 char *host;
153 /* host may be NULL */
243 if (host == NULL || hostlen == 0) {
247 * "||" here: rfc2553bis-03 says that host == NULL or
263 if ((error = ip6_parsenumeric(sa, addr, host,
276 strlcpy(host, numaddr, hostlen)
    [all...]
  /dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
SSLEngineTest.java 76 * SSLEngine object with null host and -1 port
95 * Test for <code>SSLEngine(String host, int port)</code> constructor
133 * Test for <code>SSLEngine(String host, int port)</code> constructor
143 String host = "new host"; local
145 SSLEngine e = getEngine(host, port);
146 assertEquals(e.getPeerHost(), host); local
169 assertEquals("Incorrect host name", "www.fortify.net", e.getPeerHost());
424 sse = getEngine("new host", 1080);
589 String host = "new host" local
636 String host = "new host"; local
668 String host = "new host"; local
730 String host = "new host"; local
758 String host = "new host"; local
815 String host = "new host"; local
860 String host = "new host"; local
888 String host = "new host"; local
928 String host = "new host"; local
953 String host = "new host"; local
1065 String host = "new host"; local
1094 String host = "new host"; local
1146 String host = "new host"; local
1172 String host = "new host"; local
1225 String host = "new host"; local
1255 String host = "new host"; local
1318 String host = "new host"; local
1344 String host = "new host"; local
1397 String host = "new host"; local
1426 String host = "new host"; local
1478 String host = "new host"; local
1504 String host = "new host"; local
1557 String host = "new host"; local
1586 String host = "new host"; local
1638 String host = "new host"; local
1664 String host = "new host"; local
    [all...]
  /bootable/diskinstaller/libdiskconfig/
Android.mk 14 # static library for host
23 ## Build a test executable for host (to dump configuration files).
  /build/core/
host_java_library.mk 18 # Standard rules for building a host java library.
30 $(transform-host-java-to-package)
host_executable.mk 19 $(transform-host-o-to-executable)
  /development/testrunner/test_defs/
host_test.py 44 # main class for running host tests
55 """Override parent to tag on building host libs."""
66 """Returns the name of the host jar that contains the tests."""
74 """Runs the host test.
79 options: command line options for running host tests. Expected member
81 host_lib_path: path to directory that contains host library files
93 # gather all the host jars that are needed to run tests
97 # make sure jar file exists on host
  /external/dhcpcd/dhcpcd-hooks/
29-lookup-hostname 14 elif type host >/dev/null 2>&1; then
15 h=`host ${new_ip_address}`
  /external/webkit/WebKitTools/Scripts/webkitpy/
statusserver.py 43 def __init__(self, host=default_host):
44 self.set_host(host)
47 def set_host(self, host):
48 self.host = host
49 self.url = "http://%s" % self.host
82 # During unit testing, host is None
83 if not self.host:
  /build/tools/acp/
Android.mk 21 LOCAL_C_INCLUDES := build/libs/host/include
  /cts/tools/host/src/com/android/cts/
HostSideOnlyPackage.java 22 * The host side only package.
27 * Construct a host side only package with given necessary information.
30 * @param version The version of the CTS Host allowed.
32 * @param jarPath The host controller's jar path and file.
  /dalvik/dalvikvm/
Android.mk 50 # Build for the host.
61 libdvm-host
70 # The recommendation is that host builds should always either
77 LOCAL_MODULE := dalvikvm-host

Completed in 102 milliseconds

1 23 4 5 6 7 8 91011>>