Lines Matching refs:AsyncSocket
44 void ProxyServer::OnAcceptEvent(AsyncSocket* socket) { in OnAcceptEvent()
47 AsyncSocket* int_socket = socket->Accept(nullptr); in OnAcceptEvent()
49 AsyncSocket* ext_socket = in OnAcceptEvent()
63 AsyncSocket* ext_socket) in ProxyBinding()
91 void ProxyBinding::OnInternalRead(AsyncSocket* socket) { in OnInternalRead()
96 void ProxyBinding::OnInternalWrite(AsyncSocket* socket) { in OnInternalWrite()
100 void ProxyBinding::OnInternalClose(AsyncSocket* socket, int err) { in OnInternalClose()
104 void ProxyBinding::OnExternalConnect(AsyncSocket* socket) { in OnExternalConnect()
110 void ProxyBinding::OnExternalRead(AsyncSocket* socket) { in OnExternalRead()
115 void ProxyBinding::OnExternalWrite(AsyncSocket* socket) { in OnExternalWrite()
119 void ProxyBinding::OnExternalClose(AsyncSocket* socket, int err) { in OnExternalClose()
126 void ProxyBinding::Read(AsyncSocket* socket, FifoBuffer* buffer) { in Read()
138 void ProxyBinding::Write(AsyncSocket* socket, FifoBuffer* buffer) { in Write()
151 AsyncProxyServerSocket* SocksProxyServer::WrapSocket(AsyncSocket* socket) { in WrapSocket()