Lines Matching +refs:val +refs:context
216 HttpContextImpl context = new HttpContextImpl (protocol, path, handler, this);
217 contexts.add (context);
218 logger.config ("context created: " + path);
219 return context;
226 HttpContextImpl context = new HttpContextImpl (protocol, path, null, this);
227 contexts.add (context);
228 logger.config ("context created: " + path);
229 return context;
237 logger.config ("context removed: " + path);
240 public synchronized void removeContext (HttpContext context) throws IllegalArgumentException {
241 if (!(context instanceof HttpContextImpl)) {
244 contexts.remove ((HttpContextImpl)context);
245 logger.config ("context removed: " + context.getPath());
487 HttpContextImpl context;
502 /* context will be null for new connections */
503 context = connection.getHttpContext();
509 if (context != null ) {
519 throw new HttpError ("No SSL context established");
580 requestLine, "No context found for request");
586 requestLine, "No handler for context");
607 String val = "timeout="+idle+", max="+max;
608 rheaders.set ("Keep-Alive", val);