HomeSort by relevance Sort by last modified time
    Searched defs:hostname (Results 76 - 100 of 157) sorted by null

1 2 34 5 6 7

  /external/libxml2/
nanohttp.c 133 char *hostname; /* the host name */ member in struct:xmlNanoHTTPCtxt
288 if (ctxt->hostname != NULL) {
289 xmlFree(ctxt->hostname);
290 ctxt->hostname = NULL;
316 ctxt->hostname = (char *) xmlCharStrndup(uri->server + 1, len -2);
318 ctxt->hostname = xmlMemStrdup(uri->server);
320 ctxt->hostname = xmlMemStrdup(uri->server);
419 if (ctxt->hostname != NULL) xmlFree(ctxt->hostname);
795 xmlStrcat(tmp_http, (const xmlChar *) ctxt->hostname);
    [all...]
  /external/lldb/source/Host/common/
Host.cpp 1164 char hostname[PATH_MAX]; local
    [all...]
  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 177 domainname hostname; member in struct:__anon15987
231 entry->hostname.c[0] = 0;
266 if (!entry->hostname.c[0])
272 AssignDomainName(&entry->hostname, pktrr->name);
279 AssignDomainName(&entry->hostname, &pktrr->rdata->u.name);
290 AssignDomainName(&entry->hostname, pktrr->name);
335 if (!entry->hostname.c[0])
346 SendUnicastQuery(m, entry, &entry->hostname, kDNSType_HINFO, InterfaceID);
347 //mprintf("%##s HINFO %d\n", entry->hostname.c, entry->NumQueries);
375 if (e->hostname.c[0] || e->HIHardware.c[0] || e->HISoftware.c[0]
    [all...]
nss_mdns.c 496 char hostname [k_hostname_maxlen + 1]; member in struct:buf_header
832 Lookup a fully qualified hostname using the default record type
837 Fully qualified hostname. If not fully qualified the code will
1216 // Data should be a hostname
1418 Add fully qualified hostname to result.
1424 Fully qualified hostname
1427 Pointer to start of hostname buffer,
1428 or NULL on error (usually hostname too long)
1438 "mdns: Hostname too long '%.*s': len %d, max %d",
1448 strcpy (result->header->hostname, fullname)
1476 char * hostname = result->hostent->h_name; local
    [all...]
  /external/mdnsresponder/mDNSShared/
dnssd_clientstub.c 1247 char hostname[kDNSServiceMaxDomainName]; local
    [all...]
dnsextd.c 883 char hostname[1024], buf[MaxMsg]; local
893 if (gethostname(hostname, 1024) < 0 || !MakeDomainNameFromDNSNameString(&rr.resrec.rdata->u.srv.target, hostname))
    [all...]
uds_daemon.c 3407 char hostname[256]; local
    [all...]
  /external/openssh/
readconf.h 78 char *hostname; /* Real host to connect. */ member in struct:__anon17325
79 char *host_key_alias; /* hostname alias for .ssh/known_hosts */
175 #define SSHCONF_POSTCANON 4 /* After hostname canonicalisation */
session.c 1677 const char *shell, *shell0, *hostname = NULL; local
2647 char hostname[NI_MAXHOST]; local
    [all...]
ssh-keygen.c 175 char hostname[NI_MAXHOST]; variable
323 pw->pw_name, hostname);
997 hostname);
1042 const char *host; /* Hostname searched for in find/delete case */
1111 * Hostname matches and has no CA/revoke
    [all...]
sshconnect2.c 105 char *oavail, *avail, *first, *last, *alg, *hostname, *ret; local
111 /* Find all hostkeys for this hostname */
112 get_hostfile_hostname_ipaddr(host, hostaddr, port, &hostname, NULL);
115 load_hostkeys(hostkeys, hostname, options.user_hostfiles[i]);
117 load_hostkeys(hostkeys, hostname, options.system_hostfiles[i]);
149 free(hostname);
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DefaultRequestDirector.java 1126 String hostname = host.getHostName(); local
    [all...]
  /external/tcpdump/
print-pptp.c 108 u_char hostname[64]; member in struct:pptp_msg_sccrq
120 u_char hostname[64]; member in struct:pptp_msg_sccrp
252 2 u_char hostname[64];
412 pptp_hostname_print(const u_char *hostname)
414 printf(" HOSTNAME(%.64s)", hostname);
604 TCHECK(ptr->hostname);
605 pptp_hostname_print(&ptr->hostname[0]);
634 TCHECK(ptr->hostname);
635 pptp_hostname_print(&ptr->hostname[0])
    [all...]
  /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);
  /system/core/adb/
commandline.cpp 1030 const char *hostname = NULL; local
    [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...]
dnsmasq.h 409 char *hostname, *fqdn; /* name from client-hostname option or config */ member in struct:dhcp_lease
410 char *old_hostname; /* hostname before it moved to another lease */
411 char auth_name; /* hostname came from config, not from client */
449 char *hostname, *domain; member in struct:dhcp_config
814 int hw_type, char *hostname);
819 char *strip_hostname(char *hostname);
881 void emit_dbus_signal(int action, struct dhcp_lease *lease, char *hostname);
889 char *hostname, time_t now);
  /external/iptables/libxtables/
xtables.c 1533 static char hostname[NI_MAXHOST]; local
    [all...]
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java 90 private final String hostname; field in class:NanoHTTPD
112 * Constructs an HTTP server on given hostname and port.
114 public NanoHTTPD(String hostname, int port) {
115 this.hostname = hostname;
155 myServerSocket.bind((hostname != null) ? new InetSocketAddress(hostname, myPort) : new InetSocketAddress(myPort));
    [all...]
  /external/netperf/
nettest_bsd.c 554 char *hostname;
558 hostname = data_address;
560 hostname = controlhost;
564 "complete_addrinfo using hostname %s port %s family %s type %s prot %s flags 0x%x\n",
565 hostname,
582 error = getaddrinfo((char *)hostname,
624 hostname,
715 dump_addrinfo(where, res, hostname, port, family);
781 set_hostname_and_port(char *hostname, char *portstr, int family, int port)
783 strcpy(hostname,"0.0.0.0")
550 char *hostname; local
    [all...]
  /external/ppp/pppd/
main.c 136 char hostname[MAXNAMELEN]; /* Our hostname */ variable
330 if (gethostname(hostname, MAXNAMELEN) < 0 ) {
331 option_error("Couldn't get hostname: %m");
334 hostname[MAXNAMELEN-1] = 0;
    [all...]
  /external/toybox/toys/pending/
dhcpd.c 120 char hostname[20]; member in struct:__anon19033
183 {"hostname" , DHCP_STRING | 0x0c, NULL, 0},
949 static int addip_to_lease(uint32_t assigned_nip, uint8_t mac[6], uint32_t *req_exp, char *hostname, uint8_t update)
967 if (hostname) memcpy(dls->hostname, hostname, 20);
996 static uint32_t getip_from_pool(uint32_t req_nip, uint8_t mac[6], uint32_t *req_exp, char *hostname)
1039 if (nip) addip_to_lease(nip, mac, req_exp, hostname, 1);
    [all...]
  /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/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java 1727 final String hostname = "www.android.com"; local
    [all...]

Completed in 421 milliseconds

1 2 34 5 6 7