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

/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpExchangeImpl.java83 public void sendResponseHeaders (int rCode, long contentLen) argument
86 impl.sendResponseHeaders (rCode, contentLen);
H A DExchangeImpl.java200 public void sendResponseHeaders (int rCode, long contentLen) argument
206 this.rcode = rCode;
207 String statusLine = "HTTP/1.1 "+rCode+Code.msg(rCode)+"\r\n";
216 if ((rCode>=100 && rCode <200) /* informational */
217 ||(rCode == 204) /* no content */
218 ||(rCode == 304)) /* not modified */
222 String msg = "sendResponseHeaders: rCode = "+ rCode
[all...]
H A DHttpsExchangeImpl.java83 public void sendResponseHeaders (int rCode, long contentLen) argument
86 impl.sendResponseHeaders (rCode, contentLen);
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpExchange.java175 * @param rCode the response code to send
185 public abstract void sendResponseHeaders (int rCode, long responseLength) throws IOException ; argument
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpTransaction.java289 * @param rCode the response code to send
292 public void sendResponse (int rCode, String rTag) throws IOException { argument
295 ps.print ("HTTP/1.1 " + rCode + " " + rTag + "\r\n");
316 public void sendPartialResponse (int rCode, String rTag)throws IOException { argument
319 ps.print ("HTTP/1.1 " + rCode + " " + rTag + "\r\n");
/openjdk7/jdk/test/sun/net/www/httptest/
H A DHttpTransaction.java289 * @param rCode the response code to send
292 public void sendResponse (int rCode, String rTag) throws IOException { argument
295 ps.print ("HTTP/1.1 " + rCode + " " + rTag + "\r\n");
316 public void sendPartialResponse (int rCode, String rTag)throws IOException { argument
319 ps.print ("HTTP/1.1 " + rCode + " " + rTag + "\r\n");

Completed in 35 milliseconds