Home
last modified time | relevance | path

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

/linux-5.19.10/include/linux/
Dskbuff.h2174 static inline struct sk_buff *skb_peek(const struct sk_buff_head *list_) in skb_peek() argument
2176 struct sk_buff *skb = list_->next; in skb_peek()
2178 if (skb == (struct sk_buff *)list_) in skb_peek()
2189 static inline struct sk_buff *__skb_peek(const struct sk_buff_head *list_) in __skb_peek() argument
2191 return list_->next; in __skb_peek()
2204 const struct sk_buff_head *list_) in skb_peek_next() argument
2208 if (next == (struct sk_buff *)list_) in skb_peek_next()
2226 static inline struct sk_buff *skb_peek_tail(const struct sk_buff_head *list_) in skb_peek_tail() argument
2228 struct sk_buff *skb = READ_ONCE(list_->prev); in skb_peek_tail()
2230 if (skb == (struct sk_buff *)list_) in skb_peek_tail()
[all …]
/linux-5.19.10/include/sound/
Dsoc-dpcm.h151 int stream, struct snd_soc_dapm_widget_list **list_);
/linux-5.19.10/sound/soc/
Dsoc-pcm.c1426 struct snd_soc_dapm_widget_list **list_) in dpcm_prune_paths() argument
1433 if (dpcm_be_is_active(dpcm, stream, *list_)) in dpcm_prune_paths()
1449 struct snd_soc_dapm_widget_list **list_) in dpcm_add_paths() argument
1452 struct snd_soc_dapm_widget_list *list = *list_; in dpcm_add_paths()