OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:async_requests_
(Results
1 - 2
of
2
) sorted by null
/external/libbrillo/brillo/http/
http_transport_curl.cc
223
// Add the request data to |
async_requests_
| before adding the CURL handle
225
// will need the data to be in |
async_requests_
| map already.
231
async_requests_
.emplace(curl_connection, std::move(request_data));
242
async_requests_
.erase(curl_connection);
436
auto p =
async_requests_
.find(connection);
437
CHECK(p !=
async_requests_
.end()) << "Unknown connection";
472
// |
async_requests_
| is the only reference to the shared pointer that
484
auto p =
async_requests_
.find(connection);
485
CHECK(p !=
async_requests_
.end()) << "Unknown connection";
508
async_requests_
.erase(p)
[
all
...]
http_transport_curl.h
123
std::map<Connection*, std::unique_ptr<AsyncRequestData>>
async_requests_
;
member in class:brillo::http::curl::Transport
Completed in 66 milliseconds