Lines Matching refs:epb
724 struct sctp_ep_common *epb; in __sctp_hash_endpoint() local
726 epb = &ep->base; in __sctp_hash_endpoint()
727 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port); in __sctp_hash_endpoint()
728 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_hash_endpoint()
767 hlist_add_head(&epb->node, &head->chain); in __sctp_hash_endpoint()
789 struct sctp_ep_common *epb; in __sctp_unhash_endpoint() local
791 epb = &ep->base; in __sctp_unhash_endpoint()
793 epb->hashent = sctp_ep_hashfn(sock_net(sk), epb->bind_addr.port); in __sctp_unhash_endpoint()
795 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_unhash_endpoint()
801 hlist_del_init(&epb->node); in __sctp_unhash_endpoint()
834 struct sctp_ep_common *epb; in __sctp_rcv_lookup_endpoint() local
844 sctp_for_each_hentry(epb, &head->chain) { in __sctp_rcv_lookup_endpoint()
845 ep = sctp_ep(epb); in __sctp_rcv_lookup_endpoint()