Home
last modified time | relevance | path

Searched refs:list_ (Results 1 – 1 of 1) sorted by relevance

/reactos/drivers/network/tcpip/include/
H A Dtcpcore.h408 static __inline struct sk_buff *skb_peek(struct sk_buff_head *list_) in skb_peek() argument
410 struct sk_buff *list = ((struct sk_buff *)list_)->next; in skb_peek()
411 if (list == (struct sk_buff *)list_) in skb_peek()
430 static __inline struct sk_buff *skb_peek_tail(struct sk_buff_head *list_) in skb_peek_tail() argument
432 struct sk_buff *list = ((struct sk_buff *)list_)->prev; in skb_peek_tail()
433 if (list == (struct sk_buff *)list_) in skb_peek_tail()
445 static __inline __u32 skb_queue_len(struct sk_buff_head *list_) in skb_queue_len() argument
447 return(list_->qlen); in skb_queue_len()