OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:readAsciiUntilCrlf
(Results
1 - 2
of
2
) sorted by null
/external/mockwebserver/src/main/java/com/google/mockwebserver/
MockWebServer.java
432
request =
readAsciiUntilCrlf
(in);
445
while ((header =
readAsciiUntilCrlf
(in)).length() != 0) {
478
int chunkSize = Integer.parseInt(
readAsciiUntilCrlf
(in).trim(), 16);
560
private String
readAsciiUntilCrlf
(InputStream in) throws IOException {
576
String line =
readAsciiUntilCrlf
(in);
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java
438
request =
readAsciiUntilCrlf
(in);
451
while ((header =
readAsciiUntilCrlf
(in)).length() != 0) {
484
int chunkSize = Integer.parseInt(
readAsciiUntilCrlf
(in).trim(), 16);
566
private String
readAsciiUntilCrlf
(InputStream in) throws IOException {
582
String line =
readAsciiUntilCrlf
(in);
Completed in 219 milliseconds