Home | History | Annotate | Download | only in http

Lines Matching refs:Response

49 // For more advanced functionality you need to use Request/Response objects
55 // can be obtained from the returned Response object.
56 BRILLO_EXPORT std::unique_ptr<Response> SendRequestAndBlock(
68 BRILLO_EXPORT std::unique_ptr<Response> SendRequestWithNoDataAndBlock(
76 // with the response object. On failure, |error_callback| is called with the
119 // the returned Response object.
120 BRILLO_EXPORT std::unique_ptr<Response> GetAndBlock(
138 // the returned Response object.
139 BRILLO_EXPORT std::unique_ptr<Response> HeadAndBlock(
155 // from the returned Response object.
156 BRILLO_EXPORT std::unique_ptr<Response> PostBinaryAndBlock(
194 // from the returned Response object.
195 BRILLO_EXPORT std::unique_ptr<Response> PostTextAndBlock(
217 // from the returned Response object. The form data is a list of key/value
219 BRILLO_EXPORT std::unique_ptr<Response> PostFormDataAndBlock(
239 // HTTP headers) can be obtained from the returned Response object.
241 BRILLO_EXPORT std::unique_ptr<Response> PostFormDataAndBlock(
261 // from the returned Response object. If a JSON response is expected,
262 // use ParseJsonResponse() method on the returned Response object.
263 BRILLO_EXPORT std::unique_ptr<Response> PostJsonAndBlock(
283 // from the returned Response object. If a JSON response is expected,
284 // use ParseJsonResponse() method on the returned Response object.
285 BRILLO_EXPORT std::unique_ptr<Response> PatchJsonAndBlock(
303 // Given an http::Response object, parse the body data into Json object.
307 Response* response,