Searched refs:lineBuf (Results 1 - 25 of 29) sorted by relevance

12

/external/apache-http/src/org/apache/http/impl/io/
H A DHttpRequestParser.java57 private final CharArrayBuffer lineBuf; field in class:HttpRequestParser
69 this.lineBuf = new CharArrayBuffer(128);
76 this.lineBuf.clear();
77 int i = sessionBuffer.readLine(this.lineBuf);
81 ParserCursor cursor = new ParserCursor(0, this.lineBuf.length());
82 RequestLine requestline = this.lineParser.parseRequestLine(this.lineBuf, cursor);
H A DHttpResponseParser.java57 private final CharArrayBuffer lineBuf; field in class:HttpResponseParser
69 this.lineBuf = new CharArrayBuffer(128);
76 this.lineBuf.clear();
77 int i = sessionBuffer.readLine(this.lineBuf);
82 ParserCursor cursor = new ParserCursor(0, this.lineBuf.length());
83 StatusLine statusline = lineParser.parseStatusLine(this.lineBuf, cursor);
H A DAbstractMessageWriter.java56 protected final CharArrayBuffer lineBuf; field in class:AbstractMessageWriter
67 this.lineBuf = new CharArrayBuffer(128);
85 (lineFormatter.formatHeader(this.lineBuf, header));
87 this.lineBuf.clear();
88 this.sessionBuffer.writeLine(this.lineBuf);
H A DHttpRequestWriter.java61 (this.lineBuf, ((HttpRequest) message).getRequestLine());
H A DHttpResponseWriter.java61 (this.lineBuf, ((HttpResponse) message).getStatusLine());
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultResponseParser.java59 private final CharArrayBuffer lineBuf; field in class:DefaultResponseParser
73 this.lineBuf = new CharArrayBuffer(128);
83 this.lineBuf.clear();
88 int i = sessionBuffer.readLine(this.lineBuf);
93 cursor = new ParserCursor(0, this.lineBuf.length());
94 if (lineParser.hasProtocolVersion(this.lineBuf, cursor)) {
105 StatusLine statusline = lineParser.parseStatusLine(this.lineBuf, cursor);
/external/guava/guava/src/com/google/common/io/
H A DLineReader.java45 private final LineBuffer lineBuf = new LineBuffer() { field in class:LineReader
80 lineBuf.finish();
83 lineBuf.add(buf, 0, read);
/external/icu/icu4c/source/test/intltest/
H A Dnormconf.cpp164 char lineBuf[BUF_SIZE]; local
181 T_FileStream_readLine(input, lineBuf, (int32_t)sizeof(lineBuf));
190 uprv_strcpy(lineBuf, moreCases[count]);
192 if (lineBuf[0] == 0 || lineBuf[0] == '\n' || lineBuf[0] == '\r') continue;
198 if (lineBuf[0] == '#') continue;
201 if (lineBuf[0] == '@') {
202 logln(lineBuf);
[all...]
H A Drbbimonkeytest.cpp286 const UChar *lineBuf = ucbuf_readline(rules, &lineLength, &status); local
287 if (lineBuf == NULL) {
290 UnicodeString line(lineBuf, lineLength);
/external/guava/guava-tests/test/com/google/common/io/
H A DLineBufferTest.java85 LineBuffer lineBuf = new LineBuffer() {
94 lineBuf.add(chars, off, len);
97 lineBuf.finish();
/external/robolectric/v1/lib/main/
H A Dhttpcore-4.0.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/protocol/ ...
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/guice/extensions/struts2/lib/
H A Dfreemarker-2.3.16.jarMETA-INF/ META-INF/MANIFEST.MF freemarker/ freemarker/cache/ freemarker/core/ freemarker/debug/ freemarker/debug/impl/ ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/annotation-tools/annotation-file-utilities/lib/
H A Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 553 milliseconds

12