/external/chromium_org/net/cert/ |
mock_cert_verifier.h | 29 const std::string& hostname,
|
x509_util_mac.cc | 58 OSStatus CreateSSLServerPolicy(const std::string& hostname, 63 if (!hostname.empty()) { 64 tp_ssl_options.ServerName = hostname.data(); 65 tp_ssl_options.ServerNameLen = hostname.size();
|
/external/chromium_org/net/quic/crypto/ |
channel_id.h | 46 // a ChannelIDKey for a given hostname. 51 // GetChannelIDKey looks up the ChannelIDKey for |hostname|. On success it 60 const std::string& hostname,
|
channel_id_chromium.h | 43 const std::string& hostname,
|
crypto_utils.h | 43 // (2) check that the hostname contains valid characters only; and 47 // Convert hostname to lowercase and remove the trailing '.'. 48 // Returns |hostname|. NormalizeHostname() doesn't support IP address 50 static std::string NormalizeHostname(const char* hostname);
|
proof_verifier_chromium.h | 63 const std::string& hostname,
|
channel_id_chromium.cc | 69 QuicAsyncStatus GetChannelIDKey(const std::string& hostname, 94 // |hostname| specifies the hostname for which we need a channel ID. 115 const std::string& hostname, 128 hostname_ = hostname; 232 const std::string& hostname, 236 QuicAsyncStatus status = job->GetChannelIDKey(hostname, channel_id_key,
|
channel_id_test.cc | 227 const string hostname = "foo.example.com"; local 230 source->GetChannelIDKey(hostname, &channel_id_key, NULL);
|
/external/chromium_org/net/url_request/ |
test_url_request_interceptor.h | 28 // Registers an interceptor for URLs using |scheme| and |hostname|. URLs 29 // passed to "SetResponse" are required to use |scheme| and |hostname|. 37 const std::string& hostname, 43 // hostname and scheme of |url| must match the corresponding parameters 71 // hostname is "localhost".
|
/external/chromium_org/third_party/webrtc/base/ |
schanneladapter.h | 28 virtual int StartSSL(const char* hostname, bool restartable);
|
fakenetwork.h | 95 scoped_ptr<Network> net(new Network(it->hostname(), 96 it->hostname(),
|
/external/chromium_org/chrome/browser/chromeos/net/ |
cert_verify_proc_chromeos.cc | 42 const std::string& hostname, 56 hostname,
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/ |
config.py | 23 given.hostname == allowed.hostname and
|
/external/chromium_org/third_party/boringssl/src/crypto/bio/ |
socket_helper.c | 38 const char *hostname, 49 ret = getaddrinfo(hostname, port_str, &hint, &result);
|
/external/lldb/tools/debugserver/source/ |
RNBSocket.cpp | 34 ResolveIPV4HostName (const char *hostname, in_addr_t &addr) 36 if (hostname == NULL || 37 hostname[0] == '\0' || 38 strcmp(hostname, "localhost") == 0 || 39 strcmp(hostname, "127.0.0.1") == 0) 44 else if (strcmp(hostname, "*") == 0) 52 int inet_pton_result = ::inet_pton (AF_INET, hostname, &addr); 57 struct hostent *host_entry = gethostbyname (hostname); 76 // Now figure out the hostname that will be attaching and palce it into
|
/external/chromium_org/net/dns/ |
dns_test_util.cc | 41 const std::string& hostname, 45 hostname_(hostname), 50 // Find the relevant rule which matches |qtype| and prefix of |hostname|. 54 (hostname.size() >= prefix.size()) && 55 (hostname.compare(0, prefix.size(), prefix) == 0)) { 172 const std::string& hostname, 177 new MockTransaction(rules_, hostname, qtype, callback);
|
host_resolver_impl.cc | 151 bool ResemblesNetBIOSName(const std::string& hostname) { 152 return (hostname.size() < 16) && (hostname.find('.') == std::string::npos); 155 // True if |hostname| ends with either ".local" or ".local.". 156 bool ResemblesMulticastDNSName(const std::string& hostname) { 157 DCHECK(!hostname.empty()); 161 if (hostname[hostname.size() - 1] == '.') { 162 return hostname.size() > kSuffixLen && 163 !hostname.compare(hostname.size() - kSuffixLen, kSuffixLen, kSuffix) 2089 std::string hostname = base::StringToLowerASCII(key.hostname); local [all...] |
/external/lldb/test/pexpect-2.4/examples/ |
topip.py | 16 -s : hostname of the remote server to login to. 126 hostname = options['-s'] 130 hostname = 'localhost' 132 if hostname != 'localhost' and hostname != '127.0.0.1': 182 p.login(hostname, username, password) 240 send_alert(str(s), 'ALERT on %s' % hostname, alert_addr_from, alert_addr_to)
|
/external/dnsmasq/src/ |
dhcp.c | 535 a particular hwaddr/clientid/hostname in our configuration. 666 int hw_type, char *hostname) 695 if (hostname && context) 698 hostname_isequal(config->hostname, hostname) && 747 free(config->hostname); 809 if ((config->flags & CONFIG_NAME) && hostname_isequal(config->hostname, host)) 848 config->hostname = host; 906 if ((configs->flags & CONFIG_NAME) && (domain = strip_hostname(configs->hostname))) 933 (crec = cache_find_by_name(NULL, config->hostname, 0, F_IPV4)) & 965 char *hostname = NULL; local [all...] |
/external/chromium_org/chrome/browser/ui/webui/net_internals/ |
net_internals_ui_browsertest.cc | 48 // Called on IO thread. Adds an entry to the cache for the specified hostname. 51 const std::string& hostname, 60 net::HostCache::Key key(hostname, net::ADDRESS_FAMILY_UNSPECIFIED, 0); 67 int rv = net::ParseAddressList(ip_literal, hostname, &address_list); 74 cache->Set(net::HostCache::Key(hostname, net::ADDRESS_FAMILY_UNSPECIFIED, 0), 102 // hostname by posting a task to the IO thread. Takes the host name, 189 std::string hostname; local 193 ASSERT_TRUE(list_value->GetString(0, &hostname)); 203 hostname,
|
/external/mdnsresponder/mDNSPosix/ |
Identify.c | 69 static char hostname[MAX_ESCAPED_DOMAIN_NAME], hardware[256], software[256]; variable 115 ConvertDomainNameToCString(&answer->rdata->u.name, hostname); 304 hostname[0] = hardware[0] = software[0] = 0; 339 if (strlen(arg) >= sizeof(hostname)) { 340 fprintf(stderr, "hostname must be < %d characters\n", (int)sizeof(hostname)); 343 strcpy(hostname, arg); 347 if (hostname[0]) DoQuery(&q, hostname, kDNSQType_ANY, &target, InfoCallback); 355 else if (NumAnswers) printf("%s has no HINFO record\n", hostname); [all...] |
/external/chromium_org/net/third_party/nss/ssl/ |
sslauth.c | 288 const char * hostname = NULL; local 322 * Now check the name field in the cert against the desired hostname. 325 hostname = ss->url; 326 if (hostname && hostname[0]) 327 rv = CERT_VerifyCertName(ss->sec.peerCert, hostname);
|
/external/dnsmasq/contrib/dynamic-dnsmasq/ |
dynamic-dnsmasq.pl | 30 # port 9020, and include the hostname, user and pass, and it should 53 die "Usage: $0 ADD USER PASS HOSTNAME\n" unless @ARGV == 4; 75 print "user $key, hostname $domain, ip $ip\n"; 118 unless ( defined $cgi{'hostname'} ) { 126 if ( authorize($user, $pass, $cgi{'hostname'}, $cgi{'myip'}) == 0 ) { 142 my ($user, $pass, $hostname) = @_; 144 $X->put($user, join("\t", ($pass, $hostname))); 150 my ($user, $pass, $hostname) = @_; 161 my $hostname = shift; 165 if ( defined $h{$user} and ($spass eq $pass) and ($shost eq $hostname) ) { [all...] |
/external/mdnsresponder/mDNSShared/ |
PlatformCommon.c | 106 mDNSexport void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled) 112 if (hostname) hostname->c[0] = 0; 119 if (hostname && GetConfigOption(buf, "hostname", f) && !MakeDomainNameFromDNSNameString(hostname, buf)) goto badf; 135 // for now we assume keyname = service reg domain and we use same key for service and hostname registration
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
policy_cert_verifier.cc | 73 const std::string& hostname, 87 int error = delegate_->Verify(cert, hostname, flags, crl_set, verify_result,
|