Home
last modified time | relevance | path

Searched refs:DnsTlsDispatcher (Results 1 – 6 of 6) sorted by relevance

/system/netd/resolv/
DDnsTlsDispatcher.cpp31 std::mutex DnsTlsDispatcher::sLock;
33 DnsTlsDispatcher::DnsTlsDispatcher() { in DnsTlsDispatcher() function in android::net::DnsTlsDispatcher
37 std::list<DnsTlsServer> DnsTlsDispatcher::getOrderedServerList( in getOrderedServerList()
85 DnsTlsTransport::Response DnsTlsDispatcher::query( in query()
115 DnsTlsTransport::Response DnsTlsDispatcher::query(const DnsTlsServer& server, unsigned mark, in query()
162 void DnsTlsDispatcher::cleanup(std::chrono::time_point<std::chrono::steady_clock> now) { in cleanup()
DDnsTlsDispatcher.h37 class DnsTlsDispatcher {
40 DnsTlsDispatcher();
43 explicit DnsTlsDispatcher(std::unique_ptr<IDnsTlsSocketFactory> factory) in DnsTlsDispatcher() function
DREADME.md6 * `DnsTlsDispatcher`
12 `DnsTlsDispatcher` is a singleton class whose `query` method is the DnsTls's
13 only public interface. `DnsTlsDispatcher` is just a table holding the
15 network. `DnsTlsDispatcher` also blocks each query thread, waiting on a
68 `DnsTlsDispatcher` accepts queries that have colliding ID numbers and still sends them on
88 to 3 times before reporting failure to `DnsTlsDispatcher`.
93 `DnsTlsDispatcher` maintains a 5-minute timeout. Any `DnsTlsTransport` that has had no
115 particularly required for unit testing of `DnsTlsDispatcher` and `DnsTlsTransport`.
120 `DnsTlsDispatcher`'s constructor takes an `IDnsTlsSocketFactory`,
DAndroid.bp66 "DnsTlsDispatcher.cpp",
Ddns_tls_test.cpp623 DnsTlsDispatcher dispatcher(std::move(factory)); in TEST_F()
638 DnsTlsDispatcher dispatcher(std::move(factory)); in TEST_F()
669 DnsTlsDispatcher dispatcher(std::move(factory)); in TEST_F()
683 threads.emplace_back([key, i] (DnsTlsDispatcher* dispatcher) { in TEST_F()
Dres_send.cpp118 static DnsTlsDispatcher sDnsTlsDispatcher;