Home | History | Annotate | Download | only in io

Lines Matching defs:this

9  * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
62 this.requestFactory = requestFactory;
63 this.lineBuf = new CharArrayBuffer(128);
70 this.lineBuf.clear();
71 int i = sessionBuffer.readLine(this.lineBuf);
75 ParserCursor cursor = new ParserCursor(0, this.lineBuf.length());
76 RequestLine requestline = this.lineParser.parseRequestLine(this.lineBuf, cursor);
77 return this.requestFactory.newHttpRequest(requestline);