HomeSort by relevance Sort by last modified time
    Searched defs:host (Results 126 - 150 of 695) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/deqp/framework/delibs/deutil/
deSocket.c 67 char* host; member in struct:deSocketAddress_s
101 deFree(address->host);
116 deBool deSocketAddress_setHost (deSocketAddress* address, const char* host)
118 if (address->host)
120 deFree(address->host);
121 address->host = DE_NULL;
124 address->host = deStrdup(host);
125 return address->host != DE_NULL;
130 return address->host;
    [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/iproute2/doc/
ip-cref.tex 97 host addresses.
412 the host attached to a NBMA link has no means to send to anyone
599 is derived by setting/resetting the host bits of the interface prefix.
628 \item \verb|host| --- the address is valid only inside this host.
638 \item \verb|ip addr add 127.0.0.1/8 dev lo brd + scope host|
824 acquired by the host from stateless address autoconfiguration
    [all...]
  /external/libvncserver/x11vnc/
inet.c 40 * Simple utility to map host name to dotted IP address. Ignores aliases.
43 char *host2ip(char *host);
47 int ipv6_ip(char *host);
48 int dotted_ip(char *host, int partial);
62 int connect_tcp(char *host, int port);
68 char *host2ip(char *host) {
77 hp = gethostbyname(host);
139 char *p, *host, a[2]; local
143 host = host_in + 1;
145 host = host_in
    [all...]
  /external/mdnsresponder/mDNSShared/
dnssd_clientshim.c 62 domainname host; member in struct:__anon16010
230 const char *host, /* may be NULL */
256 if (!MakeDomainNameFromDNSNameString(&h, (host && *host ) ? host : "")) { errormsg = "Bad Target Host"; goto badparam; }
273 x->host = h;
278 &x->host, port, // Host and port
  /external/mtpd/
pptp.c 106 char host[64]; member in struct:packet::__anon17182::__anon17183::__anon17185::__anon17186
227 strcpy(outgoing.sccrq.host, "anonymous");
  /external/nist-sip/java/gov/nist/javax/sip/header/
Via.java 31 import gov.nist.core.Host;
152 * Get the host, port and transport as a Hop. This is
217 /** set the Host of the Via Header
218 * @param host String to set
220 public void setHost(Host host) {
224 sentBy.setHost(host);
275 * Set the host part of this ViaHeader to the newly supplied <code>host</code>
279 * unexpectedly while parsing the host value
301 Host host = sentBy.getHost(); local
472 Host host = new Host(); local
    [all...]
  /external/openssh/
hostfile.c 120 host_hash(const char *host, const char *name_from_hostfile, u_int src_len)
135 /* Extract salt from known host entry */
143 ssh_hmac_update(ctx, host, strlen(host)) < 0 ||
232 const char *host; member in struct:load_callback_ctx
258 hostkeys->entries[hostkeys->num_entries].host = xstrdup(ctx->host);
271 load_hostkeys(struct hostkeys *hostkeys, const char *host, const char *path)
276 ctx.host = host;
467 const char *host; member in struct:host_delete_ctx
    [all...]
  /external/regex-re2/re2/testing/
re2_test.cc 344 RE2 re("((\\w+):([0-9]+))"); // extracts host and port
361 string all, host; local
363 CHECK(RE2::PartialMatch("a chrisr:9000 here", re, &all, &host, &port));
365 CHECK_EQ(host, "chrisr");
    [all...]
  /external/toybox/toys/pending/
route.c 48 { "-net", 1 }, { "-host", 2 },
59 // to get the host name from the given ip.
62 struct hostent *host; local
73 if (!(host = gethostbyname(ipstr))) return -1;
74 memcpy(&sockin->sin_addr, host->h_addr_list[0], sizeof(struct in_addr));
156 * find the given parameter in list like add/del/net/host.
283 perror_exit("conflicting netmask and host route");
300 arg2_action = get_action(&argv, arglist2); //verify the arg for -net or -host
traceroute.c 1 /* traceroute - trace the route to "host".
17 [-s SRC_IP] [-t TOS] [-w WAIT_SEC] [-g GATEWAY] [-i IFACE] [-z PAUSE_MSEC] HOST [BYTES]
20 [-i IFACE] HOST [BYTES]
22 Trace the route to HOST
32 -r Bypass routing tables, send directly to HOST
180 static void resolve_addr(char *host, int family, int type, int proto, void *sock)
190 ret = getaddrinfo(host, NULL, &hint, &info);
191 if (ret || !info) error_exit("bad address: %s ", host);
299 char host[NI_MAXHOST]; local
301 sizeof(struct sockaddr_in), host, NI_MAXHOST, NULL, 0, 0)
414 char host[NI_MAXHOST]; local
    [all...]
  /frameworks/base/media/java/android/media/
MediaHTTPConnection.java 152 String host = url.getHost(); local
154 if (host == null) {
159 if (host.equalsIgnoreCase("localhost")) {
162 if (NetworkUtils.numericToInetAddress(host).isLoopbackAddress()) {
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
Main.java 154 File host = new File(out, "host"); local
155 if (!host.isDirectory()) {
158 File[] hosts = host.listFiles(new FileFilter() {
  /libcore/luni/src/main/java/java/net/
URL.java 41 * {@code http://username:password@host:8080/directory/file?query#ref}:
45 * <tr><td>{@link #getAuthority() Authority}</td><td>{@code username:password@host:8080}</td><td></td></tr>
47 * <tr><td>{@link #getHost() Host}</td><td>{@code host}</td><td></td></tr>
86 private String host; field in class:URL
201 public URL(String protocol, String host, String file) throws MalformedURLException {
202 this(protocol, host, -1, file, null);
209 * @param host the host name or IP address of the new URL.
215 public URL(String protocol, String host, int port, String file) throws MalformedURLException
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketFactoryTest.java 114 public Socket createSocket(Socket s, String host, int port, boolean autoClose) {
125 public Socket createSocket(InetAddress host, int port) {
130 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) {
135 public Socket createSocket(String host, int port) {
244 InetAddress host = sa.getAddress(); local
246 Socket s = new Socket(host, port);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 194 String host = im.getCustomProtocol(); local
197 // Try bringing in a well-known host for specific protocols
198 host = ContactsUtils.lookupProviderNameFromId(protocol);
201 if (!TextUtils.isEmpty(host) && !TextUtils.isEmpty(data)) {
202 final String authority = host.toLowerCase();
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsRequest.java 169 // Request a global route for the host to connect
283 * Request the route to the APN (either proxy host or the MMSC host)
288 * @throws MmsHttpException for unknown host or route failure
292 String host = apn.getMmsProxy(); local
293 if (TextUtils.isEmpty(host)) {
295 host = uri.getHost();
298 // Request route to all resolved host addresses
300 for (final InetAddress addr : InetAddress.getAllByName(host)) {
313 Log.w(MmsService.TAG, "Unknown host " + host)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
AdvancedWifiOptionsFlow.java 355 String host = mProxyHostnamePage.getDataSummary(); local
362 result = WifiConfigHelper.validate(host, portStr, exclusionList);
367 mIpConfiguration.setHttpProxy(new ProxyInfo(host, port, exclusionList));
  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java 243 String host = values.getAsString(Im.CUSTOM_PROTOCOL); local
246 // Try bringing in a well-known host for specific protocols
247 host = ContactsUtils.lookupProviderNameFromId(protocol);
250 if (!TextUtils.isEmpty(host) && !TextUtils.isEmpty(data)) {
251 final String authority = host.toLowerCase();
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/mmc/
card.h 55 struct mmc_host *host; member in struct:mmc_card
99 #define mmc_card_release_host(c) mmc_release_host((c)->host)

Completed in 221 milliseconds

1 2 3 4 56 7 8 91011>>