Home
last modified time | relevance | path

Searched refs:AddRequestBody (Results 1 – 4 of 4) sorted by relevance

/external/libbrillo/brillo/http/
Dhttp_request.h240 bool AddRequestBody(const void* data, size_t size, brillo::ErrorPtr* error);
241 bool AddRequestBody(StreamPtr stream, brillo::ErrorPtr* error);
Dhttp_request.cc187 bool Request::AddRequestBody(const void* data, in AddRequestBody() function in brillo::http::Request
196 bool Request::AddRequestBody(StreamPtr stream, brillo::ErrorPtr* error) { in AddRequestBody() function in brillo::http::Request
Dhttp_utils.cc106 if (!request.AddRequestBody(data, data_size, error)) in SendRequestAndBlock()
137 if (!request.AddRequestBody(std::move(stream), &error)) { in SendRequest()
Dhttp_request_unittest.cc141 request.AddRequestBody(req_body.data(), req_body.size(), nullptr)); in TEST_F()