tag | line | file | source code |
list_ | 175 | include/linux/skbuff.h | extern __inline__ struct sk_buff *skb_peek(struct sk_buff_head *list_) |
list_ | 177 | include/linux/skbuff.h | struct sk_buff *list = ((struct sk_buff *)list_)->next; |
list_ | 178 | include/linux/skbuff.h | if (list == (struct sk_buff *)list_) |
list_ | 187 | include/linux/skbuff.h | extern __inline__ __u32 skb_queue_len(struct sk_buff_head *list_) |
list_ | 189 | include/linux/skbuff.h | return(list_->qlen); |
list_ | 210 | net/core/skbuff.c | void skb_queue_head(struct sk_buff_head *list_,struct sk_buff *newsk) |
list_ | 213 | net/core/skbuff.c | struct sk_buff *list = (struct sk_buff *)list_; |
list_ | 228 | net/core/skbuff.c | newsk->list = list_; |
list_ | 229 | net/core/skbuff.c | list_->qlen++; |
list_ | 234 | net/core/skbuff.c | void __skb_queue_head(struct sk_buff_head *list_,struct sk_buff *newsk) |
list_ | 236 | net/core/skbuff.c | struct sk_buff *list = (struct sk_buff *)list_; |
list_ | 249 | net/core/skbuff.c | newsk->list = list_; |
list_ | 250 | net/core/skbuff.c | list_->qlen++; |
list_ | 257 | net/core/skbuff.c | void skb_queue_tail(struct sk_buff_head *list_, struct sk_buff *newsk) |
list_ | 260 | net/core/skbuff.c | struct sk_buff *list = (struct sk_buff *)list_; |
list_ | 276 | net/core/skbuff.c | newsk->list = list_; |
list_ | 277 | net/core/skbuff.c | list_->qlen++; |
list_ | 282 | net/core/skbuff.c | void __skb_queue_tail(struct sk_buff_head *list_, struct sk_buff *newsk) |
list_ | 285 | net/core/skbuff.c | struct sk_buff *list = (struct sk_buff *)list_; |
list_ | 298 | net/core/skbuff.c | newsk->list = list_; |
list_ | 299 | net/core/skbuff.c | list_->qlen++; |
list_ | 307 | net/core/skbuff.c | struct sk_buff *skb_dequeue(struct sk_buff_head *list_) |
list_ | 311 | net/core/skbuff.c | struct sk_buff *list = (struct sk_buff *)list_; |
list_ | 329 | net/core/skbuff.c | list_->qlen--; |
list_ | 338 | net/core/skbuff.c | struct sk_buff *__skb_dequeue(struct sk_buff_head *list_) |
list_ | 341 | net/core/skbuff.c | struct sk_buff *list = (struct sk_buff *)list_; |
list_ | 355 | net/core/skbuff.c | list_->qlen--; |