Searched refs:poll_store (Results 1 – 3 of 3) sorted by relevance
/device/google/cuttlefish/host/frontend/webrtc_operator/ |
D | server.cpp | 57 cuttlefish::PollConnectionStore poll_store; in main() local 96 kConnectPath, [&device_registry, &poll_store](struct lws* wsi) { in main() 98 new cuttlefish::ConnectHandler(wsi, &device_registry, &poll_store)); in main() 101 kForwardPath, [&poll_store](struct lws* wsi) { in main() 103 new cuttlefish::ForwardHandler(wsi, &poll_store)); in main() 106 kPollPath, [&poll_store](struct lws* wsi) { in main() 108 new cuttlefish::PollHandler(wsi, &poll_store)); in main()
|
D | client_handler.cpp | 201 PollConnectionStore* poll_store) in ClientDynHandler() argument 202 : DynHandler(wsi), poll_store_(poll_store) {} in ClientDynHandler() 269 PollConnectionStore* poll_store) in ConnectHandler() argument 270 : ClientDynHandler(wsi, poll_store), registry_(registry) {} in ConnectHandler() 305 PollConnectionStore* poll_store) in ForwardHandler() argument 306 : ClientDynHandler(wsi, poll_store) {} in ForwardHandler() 336 PollHandler::PollHandler(struct lws* wsi, PollConnectionStore* poll_store) in PollHandler() argument 337 : ClientDynHandler(wsi, poll_store) {} in PollHandler()
|
D | client_handler.h | 89 ClientDynHandler(struct lws* wsi, PollConnectionStore* poll_store); 110 PollConnectionStore* poll_store); 121 ForwardHandler(struct lws* wsi, PollConnectionStore* poll_store); 130 PollHandler(struct lws* wsi, PollConnectionStore* poll_store);
|