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

<<21222324252627282930>>

  /dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
SSLSocketTest.java 231 * @tests javax.net.ssl.SSLSocket#SSLSocket(String host, int port)
279 * @tests javax.net.ssl.SSLSocket#SSLSocket(String host, int port, InetAddress clientAddress,
    [all...]
  /external/quake/quake/src/WinQuake/
mpdosock.h 143 * BSD file netdb.h. All addresses are supplied in host order, and
148 char FAR * h_name; /* official name of host */
150 short h_addrtype; /* host address type */
217 * Port/socket numbers: host specific functions
266 /* host on imp */
274 /* logical host */
279 * On subnets, the decomposition of addresses to host and net parts
425 #define AF_UNIX 1 /* local to host (pipes, portals) */
611 /* Authoritative Answer: Host not found */
615 /* Non-Authoritative: Host not found, or SERVERFAIL */
    [all...]
  /external/webkit/LayoutTests/http/conf/
apache2-debian-httpd.conf 26 # which responds to requests that aren't handled by a virtual host.
231 # virtual host being defined.
235 # ServerName allows you to set a host name which is sent back to clients for
237 # "www" instead of the host's real name).
239 # Note: You cannot just invent host names and hope they work. The name you
240 # define here must be a valid DNS name for your host. If you don't understand
242 # If your host doesn't have a registered DNS name, enter its IP address here.
380 # container, error messages relating to that virtual host will be
382 # container, that host's errors will be logged there and not here.
420 # Optionally add a line containing the server version and virtual host
    [all...]
fedora-httpd.conf 18 # which responds to requests that aren't handled by a virtual host.
250 # virtual host being defined.
265 # If this is not set to valid DNS name for your host, server-generated
268 # If your host doesn't have a registered DNS name, enter its IP address here.
445 # container, error messages relating to that virtual host will be
447 # container, that host's errors will be logged there and not here.
494 # Optionally add a line containing the server version and virtual host
833 # You may use the command line option '-S' to verify your virtual host
853 # ServerAdmin webmaster@dummy-host.example.com
854 # DocumentRoot /www/docs/dummy-host.example.co
    [all...]
  /external/dnsmasq/src/
dhcp.c 362 3) Fills in local (this host) and router (this host or relay) addresses.
465 address. Note that none may fit, if the address came a dhcp-host and is outside
757 char *host = NULL; local
798 if (!(host = canonicalise(ip, &nomem)) || !legal_hostname(host))
802 free(host);
809 if ((config->flags & CONFIG_NAME) && hostname_isequal(config->hostname, host))
848 config->hostname = host;
849 host = NULL
    [all...]
  /external/openssl/apps/
ocsp.c 100 char *host = NULL, *port = NULL, *path = "/"; local
179 if (!OCSP_parse_url(*args, &host, &port, &path, &use_ssl))
187 else if (!strcmp(*args, "-host"))
192 host = *args;
548 BIO_printf (bio_err, "-host host:n send OCSP request to host on port n\n");
652 if (!req && (signfile || reqout || host || add_nonce || ridx_filename))
720 else if (host)
723 resp = process_responder(bio_err, req, host, path
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/FirmwareApi/
public_commands.h 176 issuing this command, the host must reconfigure the adapter before
178 In general, the host should only use this command if the WiLink has
192 The host structure consists of the Command ID, a Command Status
207 0 2 host Information Element ID - contains the ID of the requested
230 0 2 host Information Element ID - contains the ID of the requested
235 2 4 host Length - the length of the response (different for each IE
237 4 Length host IE payload according to definition in public_infoele.h.
251 the host has set all necessary configuration elements
268 the host has set all necessary configuration elements
293 Desc: This command instructs the WiLink to scan for BSS/IBSSs. The host
    [all...]
  /external/dnsmasq/
CHANGELOG.archive 370 this makes the `host` command work when traversing search
437 --no-negcache, --addn-host.
629 dhcp-host=<hardware addr>,....
630 dhcp-host=id:<hex client id>,.....
631 dhcp-host=id:<ascii client id>,.....
633 Allow dhcp-host options to specify any IP address on the
637 Allow dhcp-host options for the same host with different
639 the network the host appears on.
685 allocated to a host using DHCP and /etc/hosts
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 70 private static final String HOST = "testHost";
405 mIntentFilter.addDataAuthority(HOST + i, String.valueOf(PORT + i));
414 assertEquals(HOST + i, actual.getHost());
416 AuthorityEntry ae = new AuthorityEntry(HOST + i, String.valueOf(PORT + i));
419 Uri uri = Uri.parse("http://" + HOST + i + ":" + String.valueOf(PORT + i));
421 Uri uri2 = Uri.parse("http://" + HOST + i + 10 + ":" + PORT + i + 10);
539 mIntentFilter.addDataAuthority(HOST, String.valueOf(PORT));
542 final Uri uri = Uri.parse("http://" + HOST + ":" + PORT);
633 mIntentFilter.addDataAuthority(HOST, String.valueOf(PORT));
649 assertEquals(HOST, intentFilter.getDataAuthority(0).getHost())
    [all...]
  /development/testrunner/
test_defs.xml 23 - host java tests are defined by <test-host> tags.
483 <!-- host java tests -->
484 <test-host name="cts-appsecurity"
490 <test-host name="frameworks-core-host"
  /external/openssl/crypto/bio/
bss_conn.c 176 ERR_add_error_data(2,"host=",c->param_hostname);
216 ERR_add_error_data(4,"host=",c->param_hostname,
231 ERR_add_error_data(4,"host=",
245 ERR_add_error_data(4,"host=",c->param_hostname,
270 ERR_add_error_data(4,"host=",
287 ERR_add_error_data(4,"host=",
  /external/webkit/WebCore/bindings/v8/
V8GCController.cpp 62 // V8GCController::registerGlobalHandle(type, host, handle);
68 // V8GCController::unregisterGlobalHandle(type, host, handle);
91 void V8GCController::registerGlobalHandle(GlobalHandleType type, void* host, v8::Persistent<v8::Value> handle)
94 globalHandleMap().set(*handle, new GlobalHandleInfo(host, type));
97 void V8GCController::unregisterGlobalHandle(void* host, v8::Persistent<v8::Value> handle)
101 ASSERT(info->m_host == host);
  /external/webkit/WebCore/html/
HTMLAnchorElement.cpp 282 prefetchDNS(document()->completeURL(parsedURL).host());
384 String HTMLAnchorElement::host() const function in class:WebCore::HTMLAnchorElement
388 return url.host();
390 return url.host();
391 return url.host() + ":" + String::number(url.port());
428 return href().host();
  /external/webkit/WebCore/page/
SecurityOrigin.cpp 83 , m_host(url.host().isNull() ? "" : url.host().lower())
185 // that the scheme, host, and port of the URLs match.
349 // underscores in them, so we'll assume that any additional underscores are part of the host.
365 String host = databaseIdentifier.substring(separator1 + 1, separator2 - separator1 - 1); local
366 return create(KURL(KURL(), protocol + "://" + host + ":" + String::number(port)));
  /frameworks/base/core/java/android/net/http/
Request.java 47 * Represents an HTTP request for a given host.
65 /** Host serving this request */
83 private final static String HOST_HEADER = "Host";
103 * @param host The server that will handle this request
111 Request(String method, HttpHost host, HttpHost proxyHost, String path,
116 mHost = host;
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/
wipp_ctrl.c 226 DESCRIPTION: Sends a text message to host
237 /* send message to host */
440 DESCRIPTION: Report to the host the current CPU usage
481 DESCRIPTION: Report to the host the current Memory usage
522 DESCRIPTION: Report to the host the current Memory usage
692 DESCRIPTION: Send the run process results to the host via ethernet.
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
ExcludedProxyTest.java 65 @BrokenTest("the host address isn't working anymore")
146 @BrokenTest("the host address isn't working anymore")
193 @BrokenTest("the host address isn't working anymore")
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSocketImpl.java 169 * @throws java.net.UnknownHostException host not defined
171 protected OpenSSLSocketImpl(String host, int port,
174 super(host, port);
185 * @throws java.net.UnknownHostException host not defined
198 * Class constructor with 5 parameters: 1st is host
201 * @throws java.net.UnknownHostException host not defined
203 protected OpenSSLSocketImpl(String host, int port, InetAddress clientAddress,
206 super(host, port, clientAddress, clientPort);
216 * @throws java.net.UnknownHostException host not defined
233 protected OpenSSLSocketImpl(Socket socket, String host, int port
    [all...]
  /external/apache-http/src/org/apache/http/conn/params/
ConnRouteParams.java 56 * A special value indicating "no host".
58 * with actual hosts. Note that this is a <i>valid</i> host.
61 new HttpHost("127.0.0.255", 0, "no-host");
  /external/dropbear/
svr-runopts.c 46 "-d dsskeyfile Use dsskeyfile for the dss host key\n"
50 "-r rsakeyfile Use rsakeyfile for the rsa host key\n"
72 "-a Allow connections to forwarded ports from any host\n"
  /external/qemu/docs/
AUDIO.TXT 10 HWVoiceOut: models an audio output (backend) on the host.
11 HWVoiceIn: models an audio input (backend) on the host.
63 send samples from the stereo buffer to the host sound card/server. This method
  /external/qemu/hw/
usb.h 31 #define USB_TOKEN_IN 0x69 /* device -> host */
32 #define USB_TOKEN_OUT 0xe1 /* host -> device */
132 * Called by the HC (Host Controller).
  /external/webkit/WebCore/platform/network/mac/
AuthenticationMac.mm 201 return [[[NSURLProtectionSpace alloc] initWithProxyHost:coreSpace.host()
206 return [[[NSURLProtectionSpace alloc] initWithHost:coreSpace.host()
299 return ProtectionSpace([macSpace host], [macSpace port], serverType, [macSpace realm], scheme);
  /external/webkit/WebKit/chromium/tests/
KURLTest.cpp 51 const char* host; member in struct:__anon6559::ComponentCase
67 const char* host; member in struct:__anon6559::GetterCase
88 EXPECT_EQ(cases[i].host, kurl.host());
102 EXPECT_EQ(cases[i].host, kurl.host());
118 // url protocol host port user pass path lastPath query ref
139 EXPECT_EQ(cases[i].host, kurl.host());
193 const char* host; member in struct:__anon6559::ExpectedComponentCase
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebDocument.idl 85 @param hostWindow The host window for the document view.
86 @abstract Called before the host window is set on the parent web view.
93 @abstract Called after the host window is set on the parent web view.

Completed in 199 milliseconds

<<21222324252627282930>>