Home | History | Annotate | Download | only in net

Lines Matching refs:request

62   virtual void OnResponseStarted(net::URLRequest* request);
63 virtual void OnReadCompleted(net::URLRequest* request, int bytes_read);
102 // Deletes the request, removes it from the registry, and removes the
120 RequestType request_type_; // What type of request is this?
127 // on which the request IO happens.
128 scoped_ptr<net::URLRequest> request_; // The actual request this wraps
130 int response_code_; // HTTP status code for the request
131 std::string data_; // Results of the request
135 // Cookie/cache info for the request
145 // Used to determine how long to wait before making a request or doing a
286 void URLFetcher::Core::OnResponseStarted(net::URLRequest* request) {
287 DCHECK_EQ(request, request_.get());
296 // network connection as soon as possible, signal that the request has
324 void URLFetcher::Core::OnReadCompleted(net::URLRequest* request,
326 DCHECK(request == request_);
329 url_ = request->url();
410 // There might be data left over from a previous request attempt.
447 // Release the reference to the request context. There could be multiple
449 // delete the object, but we cannot delay the destruction of the request
462 // When encountering a server error, we will send the request again
465 // Restarts the request if we still need to notify the delegate.