Home
last modified time | relevance | path

Searched refs:VncServer (Results 1 – 3 of 3) sorted by relevance

/device/google/cuttlefish/host/frontend/vnc_server/
Dvnc_server.cpp28 using cvd::vnc::VncServer;
30 VncServer::VncServer(int port, bool aggressive) in VncServer() function in VncServer
36 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()
Dvnc_server.h35 class VncServer {
37 explicit VncServer(int port, bool aggressive);
39 VncServer(const VncServer&) = delete;
40 VncServer& operator=(const VncServer&) = delete;
Dmain.cpp34 cvd::vnc::VncServer vnc_server(FLAGS_port, FLAGS_agressive); in main()