Home | History | Annotate | Download | only in base

Lines Matching defs:recipient

791   VirtualSocket* recipient = LookupBinding(remote_addr);
792 if (!recipient) {
793 // Make a fake recipient for address family checking.
806 if (!CanInteractWith(socket, recipient)) {
831 AddPacketToNetwork(socket, recipient, cur_time, data, data_size,
840 // recipient's recv_buffer_size_. Anything beyond that must be stored in the
845 VirtualSocket* recipient = LookupConnection(socket->local_addr_,
847 if (!recipient) {
858 size_t available = recv_buffer_capacity_ - recipient->recv_buffer_size_;
864 AddPacketToNetwork(socket, recipient, cur_time, &socket->send_buffer_[0],
866 recipient->recv_buffer_size_ += data_size;
887 VirtualSocket* recipient,
913 msg_queue_->PostAt(ts, recipient, MSG_ID_PACKET, p);