Searched refs:HttpContextImpl (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DContextList.java36 LinkedList<HttpContextImpl> list = new LinkedList<HttpContextImpl>();
38 public synchronized void add (HttpContextImpl ctx) {
50 synchronized HttpContextImpl findContext (String protocol, String path) {
54 synchronized HttpContextImpl findContext (String protocol, String path, boolean exact) {
57 HttpContextImpl lc = null;
58 for (HttpContextImpl ctx: list) {
79 HttpContextImpl ctx = findContext (protocol, path, true);
86 public synchronized void remove (HttpContextImpl context)
89 for (HttpContextImpl ct
[all...]
H A DHttpConnection.java42 HttpContextImpl context;
82 void setContext (HttpContextImpl ctx) {
97 HttpContextImpl context, InputStream raw
193 HttpContextImpl getHttpContext () {
H A DHttpServerImpl.java73 public HttpContextImpl createContext (String path, HttpHandler handler) {
77 public HttpContextImpl createContext (String path) {
H A DHttpsServerImpl.java81 public HttpContextImpl createContext (String path, HttpHandler handler) {
85 public HttpContextImpl createContext (String path) {
H A DHttpContextImpl.java41 class HttpContextImpl extends HttpContext { class in inherits:HttpContext
58 HttpContextImpl (String protocol, String path, HttpHandler cb, ServerImpl server) { method in class:HttpContextImpl
H A DHttpExchangeImpl.java62 public HttpContextImpl getHttpContext (){
H A DHttpsExchangeImpl.java62 public HttpContextImpl getHttpContext (){
H A DServerImpl.java212 public synchronized HttpContextImpl createContext (String path, HttpHandler handler) {
216 HttpContextImpl context = new HttpContextImpl (protocol, path, handler, this);
222 public synchronized HttpContextImpl createContext (String path) {
226 HttpContextImpl context = new HttpContextImpl (protocol, path, null, this);
241 if (!(context instanceof HttpContextImpl)) {
244 contexts.remove ((HttpContextImpl)context);
487 HttpContextImpl context;
492 HttpContextImpl ct
[all...]
H A DExchangeImpl.java116 public HttpContextImpl getHttpContext (){

Completed in 56 milliseconds