/external/chromium_org/net/cert/ |
cert_verify_proc_nss.h | 29 const std::string& hostname, 38 const std::string& hostname,
|
cert_verify_proc_android.h | 25 const std::string& hostname,
|
cert_verify_proc_mac.h | 25 const std::string& hostname,
|
cert_verify_proc_openssl.h | 24 const std::string& hostname,
|
cert_verify_proc_win.h | 25 const std::string& hostname,
|
/external/conscrypt/src/main/java/org/conscrypt/ |
AddressUtils.java | 37 * Returns true when the supplied hostname is valid for SNI purposes. 57 * Returns true if the supplied hostname is an literal IP address. 59 public static boolean isLiteralIpAddress(String hostname) { 65 return ipPattern.matcher(hostname).matches();
|
OpenSSLSocketFactoryImpl.java | 67 public Socket createSocket(String hostname, int port) throws IOException, UnknownHostException { 68 return new OpenSSLSocketImpl(hostname, port, (SSLParametersImpl) sslParameters.clone()); 72 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort) 74 return new OpenSSLSocketImpl(hostname, 100 public Socket createSocket(Socket s, String hostname, int port, boolean autoClose) 103 hostname,
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/ |
RecordingHostnameVerifier.java | 26 public boolean verify(String hostname, SSLSession session) { 27 calls.add("verify " + hostname);
|
/system/extras/tests/bionic/libc/common/ |
test_gethostbyname.c | 38 char* hostname = "localhost"; local 43 hostname = argv[1]; 45 hent = gethostbyname(hostname); 47 printf("gethostbyname(%s) returned NULL !!\n", hostname); 50 printf( "gethostbyname(%s) returned:\n", hostname);
|
/external/chromium_org/net/dns/ |
host_cache.h | 25 // Stores the latest address list that was looked up for a hostname. 42 Key(const std::string& hostname, AddressFamily address_family, 44 : hostname(hostname), 50 // |hostname| under assumption that integer comparisons are faster than 56 return hostname < other.hostname; 59 std::string hostname; member in struct:net::HostCache::Key 115 // Map from hostname (presumably in lowercase canonicalized format) to
|
/development/tools/axl/ |
udpEater.py | 33 hostname = socket.gethostname() 34 ip = socket.gethostbyname(hostname)
|
udpServer.py | 13 # hostname = socket.gethostname() 14 hostname = "localhost" 15 ip = socket.gethostbyname(hostname)
|
/external/dhcpcd/dhcpcd-hooks/ |
Makefile | 7 SCRIPTS+= 10-mtu 20-resolv.conf 29-lookup-hostname 30-hostname
|
/external/dnsmasq/contrib/port-forward/ |
dnsmasq-portforward | 23 hostname=${4} 34 hostname=${DNSMASQ_OLD_HOSTNAME} 42 if [ ${hostname} ]; then 43 ports=$(sed -n -e "/^${hostname}\ .*/ s/^.* //p" ${PORTSFILE})
|
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/ |
TcpStream.h | 27 int connect(const char* hostname, unsigned short port);
|
/external/chromium-libpac/test/js-unittest/ |
international_domain_names.js | 4 // This international hostname has a non-ASCII character. It is represented 10 // unicode hostname.
|
/external/chromium_org/chrome/browser/ui/ |
crypto_module_password_dialog.h | 29 // affects the message displayed in the dialog. |hostname| is the hostname 35 const std::string& hostname,
|
/external/chromium_org/net/data/proxy_resolver_v8_unittest/ |
international_domain_names.js | 4 // This international hostname has a non-ASCII character. It is represented 10 // unicode hostname.
|
/external/chromium_org/net/quic/crypto/ |
proof_source.h | 21 // GetProof finds a certificate chain for |hostname|, sets |out_certs| to 44 // |hostname| may be empty to signify that a default certificate should be 48 virtual bool GetProof(const std::string& hostname,
|
proof_source_chromium.h | 26 virtual bool GetProof(const std::string& hostname,
|
/sdk/emulator/opengl/shared/OpenglCodecCommon/ |
TcpStream.h | 27 int connect(const char* hostname, unsigned short port);
|
/sdk/emulator/opengl/shared/emugl/common/ |
sockets.h | 48 int socketTcpClient(const char* hostname, int port, int socketType);
|
/system/core/adb/ |
adb_client.h | 32 /* Set TCP Hostname of the transport to use 34 void adb_set_tcp_name(const char* hostname);
|
/external/chromium_org/chrome/browser/net/ |
predictor_browsertest.cc | 46 bool HasHostBeenRequested(const std::string& hostname) { 50 hostname) != requested_hostnames_.end(); 53 void WaitUntilHostHasBeenRequested(const std::string& hostname) { 56 if (HasHostBeenRequested(hostname)) 58 waiting_for_hostname_ = hostname; 66 void AddToHistory(const std::string& hostname) { 68 requested_hostnames_.push_back(hostname); 69 if (is_waiting_for_hostname_ && waiting_for_hostname_ == hostname) { 76 // The hostname which WaitUntilHostHasBeenRequested is currently waiting for 80 // Whether WaitUntilHostHasBeenRequested is waiting for a hostname to b [all...] |
/external/chromium_org/net/url_request/ |
url_request_filter.cc | 47 const std::string& hostname, URLRequest::ProtocolFactory* factory) { 49 scheme, hostname, 56 const std::string& hostname, 58 DCHECK_EQ(0u, hostname_interceptor_map_.count(make_pair(scheme, hostname))); 59 hostname_interceptor_map_[make_pair(scheme, hostname)] = 76 const std::string& hostname) { 78 hostname_interceptor_map_.find(make_pair(scheme, hostname)); 84 // this would leave no protocol factory for the remaining hostname and URL 105 // Check to see if this URL is masked by a hostname handler. 119 // this would leave no protocol factory for the remaining hostname and UR 137 const std::string hostname = request->url().host(); local [all...] |