Searched refs:connectStr (Results 1 - 6 of 6) sorted by relevance

/openjdk10/jdk/test/sun/net/www/protocol/http/
H A DProxyTunnelServer.java259 * The input, connectStr is of the form:
262 private void retrieveConnectInfo(String connectStr) throws Exception { argument
268 starti = connectStr.indexOf(' ');
269 endi = connectStr.lastIndexOf(' ');
270 connectInfo = connectStr.substring(starti+1, endi).trim();
277 + connectStr);
/openjdk10/jdk/test/sun/net/www/protocol/https/HttpsURLConnection/
H A DB6226610.java190 * The input, connectStr is of the form:
193 private void retrieveConnectInfo(String connectStr) throws IOException { argument
200 starti = connectStr.indexOf(' ');
201 endi = connectStr.lastIndexOf(' ');
202 connectInfo = connectStr.substring(starti+1, endi).trim();
209 + connectStr);
H A DProxyTunnelServer.java262 * The input, connectStr is of the form:
265 private void retrieveConnectInfo(String connectStr) throws Exception { argument
272 starti = connectStr.indexOf(' ');
273 endi = connectStr.lastIndexOf(' ');
274 connectInfo = connectStr.substring(starti+1, endi).trim();
281 + connectStr, e);
/openjdk10/jdk/test/sun/net/www/protocol/https/HttpsClient/
H A DProxyTunnelServer.java259 * The input, connectStr is of the form:
262 private void retrieveConnectInfo(String connectStr) throws Exception { argument
269 starti = connectStr.indexOf(' ');
270 endi = connectStr.lastIndexOf(' ');
271 connectInfo = connectStr.substring(starti+1, endi).trim();
278 + connectStr);
/openjdk10/jdk/test/sun/security/ssl/InputRecord/
H A DProxyTunnelServer.java204 * The input, connectStr is of the form:
207 void retrieveConnectInfo(String connectStr) throws Exception { argument
213 starti = connectStr.indexOf(' ');
214 endi = connectStr.lastIndexOf(' ');
215 connectInfo = connectStr.substring(starti+1, endi).trim();
222 + connectStr);
/openjdk10/jdk/test/java/net/Socket/
H A DHttpProxy.java236 * @param connectStr
239 static InetSocketAddress getConnectInfo(String connectStr) argument
243 int starti = connectStr.indexOf(' ');
244 int endi = connectStr.lastIndexOf(' ');
245 String connectInfo = connectStr.substring(starti+1, endi).trim();
252 out.println("Proxy recieved a request: " + connectStr);

Completed in 64 milliseconds