Searched refs:httpproc (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tests/AndroidTests/src/com/android/unit_tests/
H A DTestHttpClient.java63 private final BasicHttpProcessor httpproc; field in class:TestHttpClient
77 this.httpproc = new BasicHttpProcessor();
79 this.httpproc.addInterceptor(new RequestContent());
80 this.httpproc.addInterceptor(new RequestTargetHost());
82 this.httpproc.addInterceptor(new RequestConnControl());
83 this.httpproc.addInterceptor(new RequestUserAgent());
84 this.httpproc.addInterceptor(new RequestExpectContinue());
104 this.httpexecutor.preProcess(request, this.httpproc, this.context);
108 this.httpexecutor.postProcess(response, this.httpproc, this.context);
H A DTestHttpServer.java68 private final BasicHttpProcessor httpproc; field in class:TestHttpServer
88 this.httpproc = new BasicHttpProcessor();
89 this.httpproc.addInterceptor(new ResponseDate());
90 this.httpproc.addInterceptor(new ResponseServer());
91 this.httpproc.addInterceptor(new ResponseContent());
92 this.httpproc.addInterceptor(new ResponseConnControl());
137 httpproc,

Completed in 4 milliseconds