HomeSort by relevance Sort by last modified time
    Searched refs:readAsciiUntilCrlf (Results 1 - 3 of 3) sorted by null

  /packages/providers/DownloadProvider/tests/src/tests/http/
MockWebServer.java 192 String request = readAsciiUntilCrlf(in);
201 while (!(header = readAsciiUntilCrlf(in)).equals("")) {
222 int chunkSize = Integer.parseInt(readAsciiUntilCrlf(in).trim(), 16);
289 private String readAsciiUntilCrlf(InputStream in) throws IOException {
305 String line = readAsciiUntilCrlf(in);
  /frameworks/base/core/tests/utillib/src/coretestutils/http/
MockWebServer.java 210 String request = readAsciiUntilCrlf(in);
219 while (!(header = readAsciiUntilCrlf(in)).equals("")) {
240 int chunkSize = Integer.parseInt(readAsciiUntilCrlf(in).trim(), 16);
378 private String readAsciiUntilCrlf(InputStream in) throws IOException {
394 String line = readAsciiUntilCrlf(in);
  /libcore/support/src/test/java/tests/http/
MockWebServer.java 290 String request = readAsciiUntilCrlf(in);
299 while (!(header = readAsciiUntilCrlf(in)).isEmpty()) {
320 int chunkSize = Integer.parseInt(readAsciiUntilCrlf(in).trim(), 16);
394 private String readAsciiUntilCrlf(InputStream in) throws IOException {
410 String line = readAsciiUntilCrlf(in);

Completed in 1175 milliseconds