Searched refs:QuicServer (Results 1 – 13 of 13) sorted by relevance
/external/chromium_org/net/quic/ |
D | quic_server.cc | 36 QuicServer::QuicServer(const QuicConfig& config, in QuicServer() function in net::QuicServer 51 void QuicServer::Initialize() { in Initialize() 63 QuicServer::~QuicServer() { in ~QuicServer() 66 int QuicServer::Listen(const IPEndPoint& address) { in Listen() 119 void QuicServer::Shutdown() { in Shutdown() 128 void QuicServer::StartReading() { in StartReading() 138 base::Bind(&QuicServer::OnReadComplete, base::Unretained(this))); in StartReading() 151 base::Bind(&QuicServer::OnReadComplete, in StartReading() 159 void QuicServer::OnReadComplete(int result) { in OnReadComplete()
|
D | quic_server.h | 31 class QuicServer { 33 QuicServer(const QuicConfig& config, 36 virtual ~QuicServer(); 112 base::WeakPtrFactory<QuicServer> weak_factory_; 114 DISALLOW_COPY_AND_ASSIGN(QuicServer);
|
D | quic_server_bin.cc | 67 net::QuicServer server(config, net::QuicSupportedVersions()); in main()
|
D | quic_end_to_end_unittest.cc | 34 using net::tools::QuicServer; 143 new QuicServer(server_config_, QuicSupportedVersions()), in StartServer()
|
D | quic_in_memory_cache.h | 27 class QuicServer; variable
|
/external/chromium_org/net/tools/quic/ |
D | quic_server.cc | 43 QuicServer::QuicServer() in QuicServer() function in net::tools::QuicServer 56 QuicServer::QuicServer(const QuicConfig& config, in QuicServer() function in net::tools::QuicServer 69 void QuicServer::Initialize() { in Initialize() 88 QuicServer::~QuicServer() { in ~QuicServer() 91 bool QuicServer::Listen(const IPEndPoint& address) { in Listen() 164 QuicDispatcher* QuicServer::CreateQuicDispatcher() { in CreateQuicDispatcher() 173 void QuicServer::WaitForEvents() { in WaitForEvents() 177 void QuicServer::Shutdown() { in Shutdown() 186 void QuicServer::OnEvent(int fd, EpollEvent* event) { in OnEvent() 210 bool QuicServer::ReadAndDispatchSinglePacket(int fd, in ReadAndDispatchSinglePacket()
|
D | quic_server.h | 30 class QuicServer : public EpollCallbackInterface { 32 QuicServer(); 33 QuicServer(const QuicConfig& config, 36 virtual ~QuicServer(); 140 DISALLOW_COPY_AND_ASSIGN(QuicServer);
|
D | quic_in_memory_cache.h | 28 class QuicServer; variable
|
D | end_to_end_test.cc | 346 new QuicServer(server_config_, server_supported_versions_), in StartServer()
|
/external/chromium_org/net/tools/quic/test_tools/ |
D | quic_server_peer.h | 15 class QuicServer; variable 21 static bool SetSmallSocket(QuicServer* server); 22 static void DisableRecvmmsg(QuicServer* server); 23 static QuicDispatcher* GetDispatcher(QuicServer* server);
|
D | quic_server_peer.cc | 15 bool QuicServerPeer::SetSmallSocket(QuicServer* server) { in SetSmallSocket() 22 void QuicServerPeer::DisableRecvmmsg(QuicServer* server) { in DisableRecvmmsg() 27 QuicDispatcher* QuicServerPeer::GetDispatcher(QuicServer* server) { in GetDispatcher()
|
D | server_thread.h | 20 ServerThread(QuicServer* server, 51 QuicServer* server() { return server_.get(); } in server() 66 scoped_ptr<QuicServer> server_;
|
D | server_thread.cc | 14 ServerThread::ServerThread(QuicServer* server, in ServerThread()
|