Lines Matching full:responsewriter
2321 ServeHTTP(ResponseWriter, *Request)
2325 <code>ResponseWriter</code> is itself an interface that provides access
2328 <code>http.ResponseWriter</code> can be used wherever an <code>io.Writer</code>
2346 func (ctr *Counter) ServeHTTP(w http.ResponseWriter, req *http.Request) {
2353 <code>http.ResponseWriter</code>.)
2370 func (ctr *Counter) ServeHTTP(w http.ResponseWriter, req *http.Request) {
2384 func (ch Chan) ServeHTTP(w http.ResponseWriter, req *http.Request) {
2411 type HandlerFunc func(ResponseWriter, *Request)
2414 func (f HandlerFunc) ServeHTTP(w ResponseWriter, req *Request) {
2431 func ArgServer(w http.ResponseWriter, req *http.Request) {