Lines Matching defs:exprs
114 * @exprs: The list of signal expressions (from a priority level on a pin)
119 const struct aspeed_sig_expr **exprs)
123 if (!exprs)
126 while (*exprs && !ret) {
127 ret = aspeed_sig_expr_disable(ctx, *exprs);
128 exprs++;
138 * @exprs: List of signal expressions (haystack)
146 const struct aspeed_sig_expr **exprs, const char *name)
148 while (*exprs) {
149 if (strcmp((*exprs)->function, name) == 0)
150 return *exprs;
151 exprs++;
361 static bool aspeed_gpio_in_exprs(const struct aspeed_sig_expr **exprs)
363 if (!exprs)
366 while (*exprs) {
367 if (aspeed_expr_is_gpio(*exprs))
369 exprs++;