Lines Matching refs:request
35 explicit URLRequestJob(URLRequest* request);
37 // Returns the request that owns this job. THIS POINTER MAY BE NULL if the
38 // request was destroyed.
39 URLRequest* request() const {
47 // Sets extra request headers for Job types that support request headers.
77 // Called to detach the request from this Job. Results in the Job being
78 // killed off eventually. The job must not use the request pointer any more.
87 // Stops further caching of this request, if any. For more info, see
97 // Called to fetch the charset for this request. Only makes sense for some
111 // Called to setup a stream filter for this request. An example of filter is
147 // Resend the request with authentication credentials.
156 // Continue processing the request ignoring the last error.
162 // NotifyDone on the request.
171 // Whether we have processed the response for that request yet.
189 // Notifies the request that the job has completed a Read operation.
192 // Notifies the request that a start error has occurred.
195 // NotifyDone marks when we are done with a request. It is really
197 // job tracking. It should be called once per request, when the job is
210 // Notifies the job the request should be restarted.
220 // If async IO is pending, the status of the request will be
229 // Reads filtered data from the request. Returns true if successful,
231 // return data, this call can issue a new async IO request under
239 // At or near destruction time, a derived class may request that the filters
262 // The request that initiated this job. This value MAY BE NULL if the
263 // request was released by DetachRequest().
301 // NotifyDone so that it is kept in sync with the request.