Searched refs:_nextScope (Results 1 - 4 of 4) sorted by relevance
/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
H A D | ScopedHandler.java | 100 protected ScopedHandler _nextScope; field in class:ScopedHandler 117 _nextScope= (ScopedHandler)getChildHandlerByClass(ScopedHandler.class); 157 if (_nextScope!=null) 158 _nextScope.doScope(target,baseRequest,request, response); 181 if (_nextScope!=null && _nextScope==_handler) 182 _nextScope.doHandle(target,baseRequest,request, response);
|
H A D | ContextHandler.java | 1019 else if (_nextScope != null) 1020 _nextScope.doScope(target,baseRequest,request,response); 1085 else if (_nextScope != null && _nextScope == _handler) 1086 _nextScope.doHandle(target,baseRequest,request,response);
|
/external/jetty/src/java/org/eclipse/jetty/server/session/ |
H A D | SessionHandler.java | 192 if (_nextScope != null) 193 _nextScope.doScope(target,baseRequest,request,response); 228 else if (_nextScope != null && _nextScope == _handler) 229 _nextScope.doHandle(target,baseRequest,request,response);
|
/external/jetty/src/java/org/eclipse/jetty/servlet/ |
H A D | ServletHandler.java | 426 else if (_nextScope!=null) 427 _nextScope.doScope(target,baseRequest,request, response);
|
Completed in 284 milliseconds