Home | History | Annotate | Download | only in base

Lines Matching refs:AsyncSocket

14 #include "webrtc/base/asyncsocket.h"
24 explicit SocketStream(AsyncSocket* socket);
27 void Attach(AsyncSocket* socket);
28 AsyncSocket* Detach();
30 AsyncSocket* GetSocket() { return socket_; }
43 void OnConnectEvent(AsyncSocket* socket);
44 void OnReadEvent(AsyncSocket* socket);
45 void OnWriteEvent(AsyncSocket* socket);
46 void OnCloseEvent(AsyncSocket* socket, int err);
48 AsyncSocket* socket_;