Searched refs:VncServer (Results 1 – 3 of 3) sorted by relevance
28 using cvd::vnc::VncServer;30 VncServer::VncServer(int port, bool aggressive) in VncServer() function in VncServer36 void VncServer::MainLoop() { in MainLoop()45 void VncServer::StartClient(ClientSocket sock) { in StartClient()46 std::thread t(&VncServer::StartClientThread, this, std::move(sock)); in StartClient()50 void VncServer::StartClientThread(ClientSocket sock) { in StartClientThread()
35 class VncServer {37 explicit VncServer(int port, bool aggressive);39 VncServer(const VncServer&) = delete;40 VncServer& operator=(const VncServer&) = delete;
34 cvd::vnc::VncServer vnc_server(FLAGS_port, FLAGS_agressive); in main()