Home | History | Annotate | Download | only in protocol

Lines Matching refs:Socket

19 class Socket;
25 // MessageReader reads data from the socket asynchronously and calls
27 // callback as soon as the socket is closed, so the socket should
31 // new data from the socket until all previously received messages are
44 // Initialize the MessageReader with a socket. If a message is received
46 void Init(net::Socket* socket, const MessageReceivedCallback& callback);
56 net::Socket* socket_;
58 // Set to true, when we have a socket read pending, and expecting
94 void Init(net::Socket* socket, const MessageReceivedCallback& callback) {
99 socket, base::Bind(&ProtobufMessageReader<T>::OnNewData,