/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
ClientSessionContext.java | 33 final Map<HostAndPort, SSLSession> sessionsByHostAndPort 34 = new HashMap<HostAndPort, SSLSession>(); 56 HostAndPort hostAndPortKey = new HostAndPort(host, port); 74 HostAndPort hostAndPortKey = new HostAndPort(host, port); 110 HostAndPort hostAndPortKey = new HostAndPort(host, port); 124 static class HostAndPort { 128 HostAndPort(String host, int port) [all...] |
/external/guava/guava/src/com/google/common/net/ |
HostAndPort.java | 36 * HostAndPort hp = HostAndPort.fromString("[2001:db8::1]") 63 public final class HostAndPort { 76 private HostAndPort(String host, int port, boolean hasBracketlessColons) { 83 * Returns the portion of this {@code HostAndPort} instance that should 118 * Build a HostAndPort instance from separate host and port values. 125 * @return if parsing was successful, a populated HostAndPort object. 129 public static HostAndPort fromParts(String host, int port) { 131 HostAndPort parsedHost = fromString(host); 133 return new HostAndPort(parsedHost.host, port, parsedHost.hasBracketlessColons) [all...] |
HostSpecifier.java | 78 final HostAndPort parsedHost = HostAndPort.fromString(specifier);
|
/external/dropbear/ |
cli-main.c | 44 char* hostandport; local 73 hostandport = (char*)m_malloc(len); 74 snprintf(hostandport, len, "%s:%s", 77 cli_session(sock, hostandport);
|
/frameworks/base/core/java/android/webkit/ |
BrowserFrame.java | [all...] |
/external/webkit/Source/WebKit/android/jni/ |
WebCoreFrameBridge.h | 118 void requestClientCert(WebUrlLoaderClient* client, const std::string& hostAndPort);
|
WebCoreFrameBridge.cpp | 832 WebFrame::requestClientCert(WebUrlLoaderClient* client, const std::string& hostAndPort) 837 int len = hostAndPort.length(); 838 ScopedLocalRef<jstring> jHostAndPort(env, stdStringToJstring(env, hostAndPort, true)); [all...] |
/prebuilts/tools/common/guava-tools/ |
src.zip | |
/prebuilt/common/tradefed/ |
tradefed-prebuilt.jar | |
/external/webkit/Source/WebCore/platform/ |
KURL.cpp | 763 void KURL::setHostAndPort(const String& hostAndPort) 773 parse(m_string.left(hostStart()) + (slashSlashNeeded ? "//" : "") + hostAndPort + m_string.substring(m_portEnd)); [all...] |
/libcore/luni/src/test/java/tests/api/javax/net/ssl/ |
SSLEngineTest.java | [all...] |
/libcore/expectations/ |
knownfailures.txt | [all...] |
/frameworks/base/ |
preloaded-classes | [all...] |