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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/content/renderer/p2p/
host_address_request.cc 62 new P2PHostMsg_GetHostAddress(host_name.hostname(), request_id_));
  /external/chromium_org/extensions/browser/api/dns/
dns_api.cc 37 hostname_ = params->hostname;
57 // hostname you'd like to resolve, even though it doesn't use that value in
  /external/chromium_org/net/dns/
host_resolver.h 59 // The parameters for doing a Resolve(). A hostname and port are
71 const std::string& hostname() const { return host_port_pair_.host(); } function in class:net::HostResolver::RequestInfo
95 // The hostname to resolve, and the port to use in resulting sockaddrs.
130 // Resolves the given hostname (or IP address literal), filling out the
134 // ERR_NAME_NOT_RESOLVED if hostname is invalid, or if it is an
155 // Resolves the given hostname (or IP address literal) out of cache or HOSTS
157 // This acts like |Resolve()| if the hostname is IP literal, or cached value
mock_host_resolver.cc 157 if (ParseIPLiteralToNumber(info.hostname(), &ip)) {
171 HostCache::Key key(info.hostname(),
188 int rv = rules_->Resolve(info.hostname(),
194 HostCache::Key key(info.hostname(),
376 // Apply the resolving function to the remapped hostname.
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppengineimpl.cc 344 std::string hostname = tls_server_hostname_; local
345 if (hostname.empty())
346 hostname = to;
356 *output_ << "<stream:stream to=\"" << hostname << "\" "
  /external/dhcpcd/
if-options.h 104 char hostname[HOSTNAME_MAX_LEN + 1]; /* We don't store the length */ member in struct:if_options
if-options.c 66 {"hostname", optional_argument, NULL, 'h'},
362 s = parse_string(ifo->hostname,
365 syslog(LOG_ERR, "hostname: %m");
368 if (s != 0 && ifo->hostname[0] == '.') {
370 "hostname cannot begin with .");
373 ifo->hostname[s] = '\0';
375 if (ifo->hostname[0] == '\0')
810 gethostname(ifo->hostname, HOSTNAME_MAX_LEN);
811 /* Ensure that the hostname is NULL terminated */
812 ifo->hostname[HOSTNAME_MAX_LEN] = '\0'
    [all...]
  /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/chromium_org/native_client_sdk/src/examples/api/socket/
socket.cc 170 std::string hostname = host; local
173 hostname = host.substr(0, pos);
180 resolver_.Resolve(hostname.c_str(), port, hint, callback);
  /external/chromium_org/third_party/webrtc/base/
ssladapter_unittest.cc 66 int Connect(const std::string& hostname, const rtc::SocketAddress& address) {
68 << " handshake with " << hostname;
70 if (ssl_adapter_->StartSSL(hostname.c_str(), false) != 0) {
  /external/chromium_org/tools/perf/profile_creators/
extensions_profile_creator.py 165 hostname = socket.gethostname()
166 if hostname.endswith('corp.google.com'):
168 "(hostname=%s). This script needs to be run off the corp "
169 "network." % hostname)
  /external/conscrypt/src/compat/java/org/conscrypt/
Platform.java 279 * Returns true if the supplied hostname is an literal IP address.
281 public static boolean isLiteralIpAddress(String hostname) {
284 return (Boolean) m_isNumeric.invoke(null, hostname);
288 return AddressUtils.isLiteralIpAddress(hostname);
  /external/okhttp/website/static/
jquery.smooth-scroll.min.js 7 (function(l){function t(l){return l.replace(/(:|\.)/g,"\\$1")}var e="1.4.10",o={exclude:[],excludeWithin:[],offset:0,direction:"top",scrollElement:null,scrollTarget:null,beforeScroll:function(){},afterScroll:function(){},easing:"swing",speed:400,autoCoefficent:2},r=function(t){var e=[],o=!1,r=t.dir&&"left"==t.dir?"scrollLeft":"scrollTop";return this.each(function(){if(this!=document&&this!=window){var t=l(this);t[r]()>0?e.push(this):(t[r](1),o=t[r]()>0,o&&e.push(this),t[r](0))}}),e.length||this.each(function(){"BODY"===this.nodeName&&(e=[this])}),"first"===t.el&&e.length>1&&(e=[e[0]]),e};l.fn.extend({scrollable:function(l){var t=r.call(this,{dir:l});return this.pushStack(t)},firstScrollable:function(l){var t=r.call(this,{el:"first",dir:l});return this.pushStack(t)},smoothScroll:function(e){e=e||{};var o=l.extend({},l.fn.smoothScroll.defaults,e),r=l.smoothScroll.filterPath(location.pathname);return this.unbind("click.smoothscroll").bind("click.smoothscroll",function(e){var n=this,s=l(this),c=o.exclude,i=o.excludeWithin,a=0,f=0,h=!0,u={},d=location.hostname===n.hostname||!n.hostname,m=o.scrollTarget||(l.smoothScroll.filterPath(n.pathname)||r)===r,p=t(n.hash);if(o.scrollTarget||d& (…)
  /external/chromium_org/net/cert/
x509_certificate.cc 508 const std::string& hostname,
513 DCHECK(!hostname.empty());
521 const std::string host_or_ip = hostname.find(':') != std::string::npos ?
522 "[" + hostname + "]" : hostname;
538 // Fully handle all cases where |hostname| contains an IP address.
621 // The hostname must be at least as long as the cert name it is matching,
657 bool X509Certificate::VerifyNameMatch(const std::string& hostname,
661 return VerifyHostname(hostname, subject_.common_name, dns_names, ip_addrs,
  /external/chromium_org/net/base/
net_util.cc 381 // If the hostname starts with a bracket, it is either an IPv6 literal or
425 bool IsHostnameNonUnique(const std::string& hostname) {
427 const std::string host_or_ip = hostname.find(':') != std::string::npos ?
428 "[" + hostname + "]" : hostname;
437 // If |hostname| is an IP address, check to see if it's in an IANA-reserved
441 if (!ParseIPLiteralToNumber(hostname.substr(host_info.out_host.begin,
456 // Check for a registry controlled portion of |hostname|, ignoring private
684 // the hostname.
819 bool ParseURLHostnameToNumber(const std::string& hostname,
    [all...]
  /external/chromium_org/net/http/
transport_security_persister.cc 143 const std::string& hostname = state.hostname(); local
178 toplevel.Set(HashedDomainToExternalString(hostname), serialized);
  /external/chromium_org/sync/util/
cryptographer.cc 19 // We name a particular Nigori instance (ie. a triplet consisting of a hostname,
165 if (!nigori->InitByDerivation(params.hostname,
178 if (!nigori->InitByDerivation(params.hostname,
247 if (!nigori.InitByDerivation(params.hostname,
cryptographer.h 31 std::string hostname; member in struct:syncer::KeyParams
  /external/chromium_org/chrome/common/extensions/docs/server2/
redirector.py 96 if urlsplit(host).hostname != 'code.google.com':
  /external/chromium_org/net/socket/
socks5_client_socket.cc 279 // Since we only have 1 byte to send the hostname length in, if the
280 // URL has a hostname longer than 255 characters we can't send it.
281 if (0xFF < host_request_info_.hostname().size()) {
367 DCHECK_GE(static_cast<size_t>(0xFF), host_request_info_.hostname().size());
369 // First add the size of the hostname, followed by the hostname.
371 host_request_info_.hostname().size()));
372 handshake->append(host_request_info_.hostname());
  /external/chromium_org/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/chromium_org/third_party/libxml/src/
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/fio/
client.h 32 char *hostname; member in struct:fio_client
  /external/libxml2/
nanoftp.c 124 char *hostname; /* the host name */ member in struct:xmlNanoFTPCtxt
184 * and get the hostname
312 if (ctxt->hostname != NULL) {
313 xmlFree(ctxt->hostname);
314 ctxt->hostname = NULL;
332 ctxt->hostname = xmlMemStrdup(uri->server);
362 * protocol, hostname, port or other information, the
380 if (ctxt->hostname == NULL)
392 (strcmp(ctxt->hostname, uri->server)) ||
511 if (ctxt->hostname != NULL) xmlFree(ctxt->hostname)
    [all...]

Completed in 651 milliseconds

1 2 3 4 5 6 78 91011>>