Home
last modified time | relevance | path

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

/linux/include/sound/
H A Dsoc-dpcm.h133 int stream, struct snd_soc_dapm_widget_list **list_);
136 struct snd_soc_dapm_widget_list **list_);
/linux/include/linux/
H A Dskbuff.h2193 static inline struct sk_buff *skb_peek(const struct sk_buff_head *list_) in skb_peek() argument
2195 struct sk_buff *skb = list_->next; in skb_peek()
2197 if (skb == (struct sk_buff *)list_) in skb_peek()
2208 static inline struct sk_buff *__skb_peek(const struct sk_buff_head *list_) in __skb_peek() argument
2210 return list_->next; in __skb_peek()
2223 const struct sk_buff_head *list_) in skb_peek_next() argument
2227 if (next == (struct sk_buff *)list_) in skb_peek_next()
2245 static inline struct sk_buff *skb_peek_tail(const struct sk_buff_head *list_) in skb_peek_tail() argument
2247 struct sk_buff *skb = READ_ONCE(list_->prev); in skb_peek_tail()
2249 if (skb == (struct sk_buff *)list_) in skb_peek_tail()
[all …]
/linux/tools/net/ynl/pyynl/lib/
H A Ddoc_generator.py101 def rst_list_inline(self, list_: List[str], level: int = 0) -> str:
103 return self.headroom(level) + "[" + ", ".join(self.inline(i) for i in list_) + "]"
/linux/sound/soc/
H A Dsoc-pcm.c1536 struct snd_soc_dapm_widget_list **list_) in dpcm_prune_paths() argument
1543 if (dpcm_be_is_active(dpcm, stream, *list_)) in dpcm_prune_paths()
1559 struct snd_soc_dapm_widget_list **list_) in dpcm_add_paths() argument
1562 struct snd_soc_dapm_widget_list *list = *list_; in dpcm_add_paths()