HomeSort by relevance Sort by last modified time
    Searched defs:hostname (Results 251 - 275 of 401) sorted by null

<<11121314151617

  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupIncomingFragment.java 392 final String hostname = recvAuth.mAddress; local
393 if (hostname != null) {
394 mServerView.setText(hostname);
536 final String hostName =
539 sendAuth.setConnection(sendAuth.mProtocol, hostName, sendAuth.mPort, sendAuth.mFlags);
AccountSetupOutgoingFragment.java 253 final String hostname = sendAuth.mAddress; local
254 if (hostname != null) {
255 mServerView.setText(hostname);
  /external/autotest/frontend/afe/
models.py 149 hostname = dbmodels.CharField(max_length=255, unique=True) variable in class:Shard
151 name_field = 'hostname'
162 """Get the rpc hostname of the shard.
164 @return: Just the shard hostname for all non-testing environments.
168 # can run on the same host, if the shard hostname is localhost we
175 # shard VM has a hostname like localhost:<port>. In the real cluster
176 # environment, a shard node does not have 'localhost' for its hostname.
177 # The following hostname substitution is needed only for the VM
179 # The 'hostname' should not be replaced in the case of real cluster.
180 if utils.is_puppylab_vm(self.hostname)
193 hostname = dbmodels.CharField(max_length=255, unique=True) variable in class:Drone
    [all...]
  /external/curl/lib/
url.c 132 static void free_fixed_hostname(struct hostname *host);
972 * hostname changed.
3401 const char *hostname; local
    [all...]
  /external/curl/lib/vtls/
openssl.c 1078 hostname. In this case, the iPAddress subjectAltName must be present
1097 const char * const hostname = SSL_IS_PROXY() ? conn->http_proxy.host.name : local
1104 Curl_inet_pton(AF_INET6, hostname, &addr)) {
1110 if(Curl_inet_pton(AF_INET, hostname, &addr)) {
1726 const char * const hostname = SSL_IS_PROXY() ? conn->http_proxy.host.name : local
2280 const char * const hostname = SSL_IS_PROXY() ? local
    [all...]
  /external/dhcpcd-6.8.2/
dhcp.c 728 const char *hostname; local
877 if (ifo->hostname[0] == '\0')
878 hostname = get_hostname(hbuf, sizeof(hbuf),
881 hostname = ifo->hostname;
906 if (hostname)
912 if (hostname) {
913 i = encode_rfc1035(hostname, p);
917 } else if (ifo->options & DHCPCD_HOSTNAME && hostname) {
919 len = strlen(hostname);
    [all...]
dhcp6.c 524 const char *hostname; local
539 /* We're sending the DHCPv4 hostname option, so send FQDN as
541 * hostname and FQDN according to RFC4702 */
545 if (ifo->hostname[0] == '\0')
546 hostname = get_hostname(hbuf, sizeof(hbuf),
549 hostname = ifo->hostname;
551 hostname = NULL; /* appearse gcc */
599 len += sizeof(*o) + 1 + encode_rfc1035(hostname, NULL);
874 l = encode_rfc1035(hostname, p + 1)
    [all...]
  /external/dnsmasq/src/
rfc2131.c 104 char *hostname,
133 char *hostname = NULL, *offer_hostname = NULL, *client_hostname = NULL, *domain = NULL; local
390 hostname = config->hostname;
480 if (hostname)
481 lease_set_hostname(lease, hostname, 1);
489 do_options(context, mess, end, NULL, hostname, get_domain(mess->yiaddr),
562 hostname = config->hostname;
565 /* be careful not to send an OFFER with a hostname not matching the DISCOVER. *
    [all...]
  /external/fio/
client.c 185 free(client->hostname);
242 dprint(FD_NET, "client: removed <%s>\n", client->hostname);
304 const char *hostname, int type,
318 client->hostname = strdup(hostname);
326 if (fio_server_parse_host(hostname, ipv6,
343 dprint(FD_NET, "client: added <%s>\n", client->hostname);
360 dprint(FD_NET, "client <%s>: add ini %s\n", client->hostname, ini_file);
375 int fio_client_add(struct client_ops *ops, const char *hostname, void **cookie)
402 if (fio_server_parse_string(hostname, &client->hostname
988 const char *hostname = client->hostname ? client->hostname : ""; local
    [all...]
  /external/iptables/libxtables/
xtables.c 1213 static char hostname[NI_MAXHOST]; local
1222 hostname, sizeof(hostname) - 1, NULL, 0, 0);
1226 return hostname;
1571 static char hostname[NI_MAXHOST]; local
    [all...]
  /external/libcups/cups/
dest.c 577 hostname[256], /* Hostname */ local
646 userpass, sizeof(userpass), hostname, sizeof(hostname),
667 if ((addrlist = httpAddrGetList(hostname, AF_UNSPEC, portstr)) == NULL)
694 http = httpConnect2(hostname, port, addrlist, AF_UNSPEC, encryption, 1, 0, NULL);
1362 hostname[256]; \/* Hostname *\/ local
1434 hostname[256], \/* Hostname from URI *\/ local
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.c 883 char hostname[1024], buf[MaxMsg]; local
893 if (gethostname(hostname, 1024) < 0 || !MakeDomainNameFromDNSNameString(&rr.resrec.rdata->u.srv.target, hostname))
    [all...]
  /external/openssh/
ssh-keygen.c 183 char hostname[NI_MAXHOST]; variable
322 pw->pw_name, hostname);
927 * accept a public key prefixed with a hostname or options.
949 /* Retry after parsing leading hostname/key options */
1029 hostname);
1074 const char *host; /* Hostname searched for in find/delete case */
1150 * Hostname matches and has no CA/revoke
    [all...]
sshconnect2.c 106 char *oavail, *avail, *first, *last, *alg, *hostname, *ret; local
112 /* Find all hostkeys for this hostname */
113 get_hostfile_hostname_ipaddr(host, hostaddr, port, &hostname, NULL);
116 load_hostkeys(hostkeys, hostname, options.user_hostfiles[i]);
118 load_hostkeys(hostkeys, hostname, options.system_hostfiles[i]);
150 free(hostname);
    [all...]
  /external/ppp/pppd/
main.c 133 char hostname[MAXNAMELEN]; /* Our hostname */ variable
327 if (gethostname(hostname, MAXNAMELEN) < 0 ) {
328 option_error("Couldn't get hostname: %m");
331 hostname[MAXNAMELEN-1] = 0;
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp-testing-support/2.7.4/
okhttp-testing-support-2.7.4.jar 
  /external/blktrace/
blktrace.c 205 char *hostname; member in struct:cl_host
320 static char hostname[MAXHOSTNAMELEN]; variable
949 if (inet_aton(hostname, &addr->sin_addr) != 1) {
952 hent = gethostbyname(hostname);
960 hostname);
966 hostname);
972 strcpy(hostname, hent->h_name);
994 hostname);
1479 len += sprintf(dst + len, "%s-", nc->ch->hostname);
    [all...]
  /external/libevent/
http.c 199 const char *hostname);
1529 const char *hostname; local
3009 const char *hostname; local
3680 char *hostname = NULL, *portname = NULL; local
    [all...]
  /external/mdnsresponder/mDNSWindows/
mDNSWin32.c 2282 TCHAR hostname[256]; local
    [all...]
  /external/minijail/
libminijail.c 157 char *hostname; member in struct:minijail
469 if (j->hostname)
472 j->hostname = strdup(name);
473 if (!j->hostname)
928 if (j->hostname)
929 marshal_append(state, j->hostname, strlen(j->hostname) + 1);
1017 if (j->hostname) { /* stale pointer */
1018 char *hostname = consumestr(&serialized, &length); local
1019 if (!hostname)
    [all...]
  /external/netperf/src/
nettest_bsd.c 665 char *hostname;
669 hostname = data_address;
671 hostname = controlhost;
675 "complete_addrinfo using hostname %s port %s family %s type %s prot %s flags 0x%x\n",
676 hostname,
693 error = getaddrinfo((char *)hostname,
763 hostname,
864 dump_addrinfo(where, res, hostname, port, family);
944 set_hostname_and_port(char *hostname, char *portstr, int family, int port)
946 strcpy(hostname,"0.0.0.0")
660 char *hostname; local
    [all...]
  /external/robolectric/v3/
shadows-httpclient-3.1-SNAPSHOT.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.4.1/
okhttp-3.4.1.jar 
  /prebuilts/misc/common/robolectric/lib/
shadows-httpclient-3.1.1.jar 
  /external/boringssl/src/ssl/
internal.h 1143 char *hostname; member in struct:ssl_handshake_st
    [all...]

Completed in 5228 milliseconds

<<11121314151617