Home
last modified time | relevance | path

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

/linux/drivers/pinctrl/aspeed/
H A Dpinctrl-aspeed.c121 const struct aspeed_sig_expr **exprs) in aspeed_disable_sig() argument
125 if (!exprs) in aspeed_disable_sig()
128 while (*exprs && !ret) { in aspeed_disable_sig()
129 ret = aspeed_sig_expr_disable(ctx, *exprs); in aspeed_disable_sig()
130 exprs++; in aspeed_disable_sig()
148 const struct aspeed_sig_expr **exprs, const char *name) in aspeed_find_expr_by_name() argument
150 while (*exprs) { in aspeed_find_expr_by_name()
151 if (strcmp((*exprs)->function, name) == 0) in aspeed_find_expr_by_name()
152 return *exprs; in aspeed_find_expr_by_name()
153 exprs++; in aspeed_find_expr_by_name()
[all …]
/linux/net/netfilter/
H A Dnft_dynset.c145 if (set->exprs[pos] && set->exprs[pos]->ops != expr->ops) { in nft_dynset_expr_alloc()
263 dynset_expr->ops != set->exprs[0]->ops)) { in nft_dynset_init()
298 if (dynset_expr->ops != set->exprs[i]->ops) { in nft_dynset_init()
H A Dnf_tables_api.c5060 if (nf_tables_fill_expr_info(skb, set->exprs[0], false) < 0) in nf_tables_fill_set()
5071 set->exprs[i], false) < 0) in nf_tables_fill_set()
5338 struct nft_expr **exprs, int *num_exprs, in nft_set_expr_alloc()
5350 exprs[0] = expr; in nft_set_expr_alloc()
5375 exprs[i++] = expr; in nft_set_expr_alloc()
5384 nft_expr_destroy(ctx, exprs[i]);
5391 struct nft_expr *exprs[], u32 num_exprs, u32 flags) in nft_set_is_same()
5410 if (set->exprs[i]->ops != exprs[i]->ops) in nft_set_is_same()
5592 struct nft_expr *exprs[NFT_SET_EXPR_MA in nf_tables_newset()
5334 nft_set_expr_alloc(struct nft_ctx * ctx,struct nft_set * set,const struct nlattr * const * nla,struct nft_expr ** exprs,int * num_exprs,u32 flags) nft_set_expr_alloc() argument
5387 nft_set_is_same(const struct nft_set * set,const struct nft_set_desc * desc,struct nft_expr * exprs[],u32 num_exprs,u32 flags) nft_set_is_same() argument
5588 struct nft_expr *exprs[NFT_SET_EXPR_MAX] = {}; nf_tables_newset() local
[all...]
/linux/include/net/netfilter/
H A Dnf_tables.h613 struct nft_expr *exprs[NFT_SET_EXPR_MAX]; member