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

1 2 34 5 6 7 8

  /external/quake/quake/src/WinQuake/
net_loop.cpp 53 if (Q_strcmp(hostname.string, "UNNAMED") == 0)
56 Q_strcpy(hostcache[0].name, hostname.string);
net_mp.cpp 31 extern cvar_t hostname;
79 // if the quake hostname isn't set, set it to the machine name
80 if (Q_strcmp(hostname.string, "UNNAMED") == 0)
95 Cvar_Set ("hostname", buff);
  /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...]
  /frameworks/base/core/java/android/webkit/
HttpAuthHandler.java 262 String hostname = loader.proxyAuthenticate() ? local
267 proxy.onReceivedHttpAuthRequest(this, hostname, realm);
  /packages/apps/Mms/src/com/android/mms/transaction/
Transaction.java 235 * @param hostname the name of the host (or the IP address)
239 public static int lookupHost(String hostname) {
242 inetAddress = InetAddress.getByName(hostname);
  /bionic/libc/netbsd/net/
getaddrinfo.c 51 * when globbing NULL hostname (to loopback, or wildcard). Is it the right
55 * (1) what should we do against numeric hostname (2) what should we do
56 * against NULL hostname (3) what is AI_ADDRCONFIG itself. AF not ready?
240 "Address family for hostname not supported", /* EAI_ADDRFAMILY */
246 "No address associated with hostname", /* EAI_NODATA */
247 "hostname nor servname provided, or not known", /* EAI_NONAME */
375 getaddrinfo(const char *hostname, const char *servname,
386 /* hostname is allowed to be NULL */
403 if (hostname == NULL && servname == NULL)
472 /* NULL hostname, or numeric hostname *
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_mac.h 28 // The given hostname will be compared with the name(s) in the server's
32 const std::string& hostname,
socks5_client_socket.cc 220 // Since we only have 1 byte to send the hostname length in, if the
221 // URL has a hostname longer than 255 characters we can't send it.
222 if (0xFF < host_request_info_.hostname().size()) {
224 "Failed sending request because hostname is "
308 DCHECK_GE(static_cast<size_t>(0xFF), host_request_info_.hostname().size());
310 // First add the size of the hostname, followed by the hostname.
312 host_request_info_.hostname().size()));
313 handshake->append(host_request_info_.hostname());
ssl_client_socket_nss.h 33 // The given hostname will be compared with the name(s) in the server's
37 const std::string& hostname,
ssl_client_socket_win.h 31 // The given hostname will be compared with the name(s) in the server's
35 const std::string& hostname,
  /external/dnsmasq/src/
dbus.c 44 " <arg name=\"hostname\" type=\"s\"/>\n"
49 " <arg name=\"hostname\" type=\"s\"/>\n"
54 " <arg name=\"hostname\" type=\"s\"/>\n"
393 void emit_dbus_signal(int action, struct dhcp_lease *lease, char *hostname)
405 if (!hostname)
406 hostname = "";
430 dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &hostname))
  /external/openssl/apps/
s_apps.h 151 int do_server(int port, int type, int *ret, int (*cb) (char *hostname, int s, unsigned char *context), unsigned char *context);
  /external/ppp/pppd/plugins/radius/
config.c 404 * Purpose: see if ip_addr is one of the ip addresses of hostname
410 static int find_match (UINT4 *ip_addr, char *hostname)
416 if (rc_good_ipaddr (hostname) == 0)
418 if (*ip_addr == ntohl(inet_addr (hostname)))
425 if ((hp = gethostbyname (hostname)) == (struct hostent *) NULL)
480 if ((h = strtok (buffer, " \t\n")) == NULL) /* first hostname */
  /external/webkit/WebCore/page/
Location.cpp 83 // "The hostname property is the concatenation of the host and port properties, separated by a colon."
88 String Location::hostname() const function in class:WebCore::Location
  /hardware/broadcom/wlan/bcm4329/src/dhd/linux/
Makefile 346 @echo "CC = $(CC) (ver=`$(CC) -dumpversion`; host=`hostname`; processor=`uname -m`)"
  /frameworks/base/core/java/android/net/
SSLCertificateSocketFactory.java 58 * <li>Hostname verification in most cases (see WARNINGs below)
70 * This implementation does check the server's certificate hostname, but only
71 * for createSocket variants that specify a hostname. When using methods that
77 * {@link HostnameVerifier} to verify the certificate hostname.
80 * SSL certificate and hostname checks for testing purposes. This setting
174 * Verify the hostname of the certificate used by the other end of a
175 * connected socket. You MUST call this if you did not supply a hostname
177 * redundantly if the hostname has already been verified.
179 * <p>Wildcard certificates are allowed to verify any matching hostname,
184 * @param hostname The expected hostname of the remote serve
    [all...]
  /packages/apps/Email/src/com/android/email/mail/transport/
MailTransport.java 165 // After the socket connects to an SSL server, confirm that the hostname is as expected
188 * NOTE: No explicit hostname verification is required here, because it's handled automatically
218 * Verify the hostname of the certificate used by the other end of a
219 * connected socket. You MUST call this if you did not supply a hostname
221 * redundantly if the hostname has already been verified.
223 * <p>Wildcard certificates are allowed to verify any matching hostname,
228 * @param hostname The expected hostname of the remote server
232 private void verifyHostname(Socket socket, String hostname) throws IOException {
246 if (!HOSTNAME_VERIFIER.verify(hostname, session))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSocketImpl.java 72 private String hostname; field in class:OpenSSLSocketImpl
396 if (hostname != null) {
397 NativeCrypto.SSL_set_tlsext_host_name(sslNativePointer, hostname);
    [all...]
  /external/chromium/third_party/libevent/
evdns.h 94 * evdns_resolve("www.hostname.com", 0, callback, NULL);
314 @param name a DNS hostname
327 @param name a DNS hostname
516 int evdns_server_request_add_ptr_reply(struct evdns_server_request *req, struct in_addr *in, const char *inaddr_name, const char *hostname, int ttl);
  /external/libxml2/
nanoftp.c 123 char *hostname; /* the host name */ member in struct:xmlNanoFTPCtxt
183 * and get the hostname
311 if (ctxt->hostname != NULL) {
312 xmlFree(ctxt->hostname);
313 ctxt->hostname = NULL;
331 ctxt->hostname = xmlMemStrdup(uri->server);
361 * protocol, hostname, port or other information, the
379 if (ctxt->hostname == NULL)
391 (strcmp(ctxt->hostname, uri->server)) ||
510 if (ctxt->hostname != NULL) xmlFree(ctxt->hostname)
    [all...]
  /external/dhcpcd/
dhcpcd.c 72 {"hostname", optional_argument, NULL, 'h'},
164 printf("usage: "PACKAGE" [-dknpqxADEGHKLOTV] [-c script] [-f file ] [-h hostname]\n"
327 s = parse_string(options->hostname,
332 logger(LOG_ERR, "hostname: %s", strerror(errno));
335 if (s != 0 && options->hostname[0] == '.') {
336 logger(LOG_ERR, "hostname cannot begin with a .");
339 options->hostname[s] = '\0';
684 gethostname(options->hostname, HOSTNAME_MAX_LEN);
685 /* Ensure that the hostname is NULL terminated */
686 options->hostname[HOSTNAME_MAX_LEN] = '\0'
    [all...]
  /external/ppp/pppd/
options.c 214 "Add given domain name to hostname",
    [all...]
  /external/qemu/
sockets.h 242 /* resolve a hostname or decimal IPv4/IPv6 address into a socket address.
252 const char* hostname,
284 SockAddress** sock_address_list_create( const char* hostname,
  /external/qemu/telephony/
sysdeps_qemu.c 362 sys_channel_create_tcp_client( const char* hostname, int port )
366 channel->fd = socket_network_client( hostname, port, SOCKET_STREAM );
  /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...]

Completed in 315 milliseconds

1 2 34 5 6 7 8