Searched refs:hostName (Results 1 - 25 of 28) sorted by relevance

12

/external/webkit/Source/WebCore/platform/network/
H A DProxyServer.h53 ProxyServer(Type type, const String& hostName, int port) argument
55 , m_hostName(hostName)
61 const String& hostName() const { return m_hostName; } function in class:WebCore::ProxyServer
H A DProxyServer.cpp50 ASSERT(!proxyServer.hostName().isNull());
51 builder.append(proxyServer.hostName());
/external/okhttp/src/test/java/com/squareup/okhttp/internal/
H A DSslContextBuilder.java51 private final String hostName; field in class:SslContextBuilder
56 * @param hostName the subject of the host. For TLS this should be the
59 public SslContextBuilder(String hostName) { argument
60 this.hostName = hostName;
96 * Generates a certificate for {@code hostName} containing {@code keyPair}'s
102 X500Principal issuer = new X500Principal("CN=" + hostName);
103 X500Principal subject = new X500Principal("CN=" + hostName);
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSpdyConnection.java96 private final String hostName; field in class:SpdyConnection
117 hostName = builder.hostName;
119 new Thread(new Reader(), "Spdy Reader " + hostName).start();
206 new NamedRunnable(String.format("Spdy Writer %s stream %d", hostName, streamId)) {
222 new NamedRunnable(String.format("Spdy Writer %s stream %d", hostName, streamId)) {
257 executor.submit(new NamedRunnable(String.format("Spdy Writer %s ping %d", hostName, streamId)) {
376 private String hostName; field in class:SpdyConnection.Builder
394 public Builder(String hostName, boolean client, Socket socket) throws IOException { argument
395 this(hostName, clien
402 Builder(String hostName, boolean client, InputStream in, OutputStream out) argument
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DInetAddressThreadTest.java86 String hostName = ia.getHostName();
92 if (!hostName.startsWith(correctName)) {
97 + hostName
/external/nist-sip/java/gov/nist/core/
H A DHost.java72 /** hostName field
94 public Host(String hostName) throws IllegalArgumentException { argument
95 if (hostName == null)
101 setHost(hostName, IPV4ADDRESS);
/external/smack/src/com/kenai/jbosh/
H A DBOSHClientConfig.java232 * @param hostName proxy hostname
236 public Builder setProxy(final String hostName, final int port) { argument
237 if (hostName == null || hostName.length() == 0) {
245 bProxyHost = hostName;
/external/webkit/Source/WebCore/platform/network/qt/
H A DProxyServerQt.cpp66 servers.append(ProxyServer(proxyType, proxy.hostName(), proxy.port()));
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DHopImpl.java70 * @param hostName hostname
74 public HopImpl(String hostName, int portNumber, String trans) { argument
75 host = hostName;
/external/webkit/Tools/WebKitLauncher/
H A DWebKitNightlyEnablerSparkle.m48 NSString *hostName = objc_msgSend(host, @selector(name));
49 NSPanel *panel = NSGetInformationalAlertPanel([NSString stringWithFormat:@"Would you like to download and install %@ %@ now?", hostName, objc_msgSend(updateItem, @selector(displayVersionString))],
50 [NSString stringWithFormat:@"You are currently running %@ %@.", hostName, objc_msgSend(host, @selector(displayVersion))],
/external/apache-http/src/org/apache/http/conn/ssl/
H A DAbstractVerifier.java148 String hostName = host.trim().toLowerCase(Locale.ENGLISH);
171 match = hostName.endsWith(cn.substring(1));
175 match = countDots(hostName) == countDots(cn);
178 match = hostName.equals(cn);
/external/webkit/Source/WebCore/loader/
H A DResourceLoadScheduler.cpp59 String hostName = url.host(); local
60 HostInformation* host = m_hosts.get(hostName);
62 host = new HostInformation(hostName, maxRequestsInFlightPerHost);
63 m_hosts.add(hostName, host);
/external/apache-http/src/org/apache/http/client/protocol/
H A DRequestAddCookies.java134 String hostName = targetHost.getHostName();
141 hostName,
/external/okhttp/src/test/java/com/squareup/okhttp/internal/mockspdyserver/
H A DMockSpdyServer.java97 String hostName = getHostName();
98 return hostName.contains(".") ? hostName : ".local";
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DMockWebServer.java122 String hostName = getHostName();
123 return hostName.contains(".") ? hostName : ".local";
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpURLConnectionImpl.java226 String hostName = getURL().getHost();
230 hostName = proxyAddress.getHostName();
233 return new SocketPermission(hostName + ":" + hostPort, "connect, resolve");
/external/webkit/Source/WebCore/websockets/
H A DWebSocketHandshake.cpp74 static String hostName(const KURL& url, bool secure) function in namespace:WebCore
222 builder.append(hostName(m_url, m_secure));
239 fields.append("Host: " + hostName(m_url, m_secure));
283 request.addHeaderField("Host", hostName(m_url, m_secure));
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHttpOverSpdyTest.java76 private final String hostName = server.getHostName(); field in class:HttpOverSpdyTest
103 assertContains(request.getHeaders(), ":host: " + hostName + ":" + server.getPort());
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
H A DURLConnectionTest.java93 private String hostName; field in class:URLConnectionTest
107 hostName = server.getHostName();
1639 String server1Host = hostName + ":" + server.getPort();
1640 String server2Host = hostName + ":" + server2.getPort();
1787 assertEquals(Arrays.asList("verify " + hostName), hostnameVerifier.calls);
1788 assertEquals(Arrays.asList("checkServerTrusted [CN=" + hostName + " 1]"), trustManager.calls);
/external/mdnsresponder/mDNSShared/
H A Duds_daemon.c2123 char hostName[MAX_DOMAIN_LABEL]; local
2126 if (get_string(&request->msgptr, request->msgend, hostName, MAX_DOMAIN_LABEL) < 0) return(mStatus_BadParamErr);
2134 if(hostName[0] == 0) return mStatus_BadParamErr;
2136 while (len < MAX_DOMAIN_LABEL && hostName[len+1] && hostName[len+1] != '.') len++;
2138 strncpy(&(mDNSStorage.nicelabel.c[1]), hostName, len);
2140 strncpy(&(mDNSStorage.hostlabel.c[1]), hostName, len);
/external/robolectric/lib/main/
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...

Completed in 618 milliseconds

12