Lines Matching refs:anp
58 struct node *anp; /* arrow np */ member
85 struct node *anp);
605 outfl(O_ALTFP|O_VERB3|O_NONL, infop->anp->file, in hmatch_full_config()
606 infop->anp->line, "hmatch_full_config: "); in hmatch_full_config()
863 struct node *lnp, struct node *anp, struct wildcardinfo *wcp) in vmatch_event() argument
893 vmatch(infop, np, lnp, anp); in vmatch_event()
928 vmatch(infop, np, lnp, anp); in vmatch_event()
1029 anp, wcp); in vmatch_event()
1046 lnp, anp, wcp); in vmatch_event()
1101 anp, wcp); in vmatch_event()
1116 vmatch_event(infop, config_child(cp), np, lnp, anp, in vmatch_event()
1187 vmatch(struct info *infop, struct node *np, struct node *lnp, struct node *anp) in vmatch() argument
1197 vmatch(infop, lnp, NULL, anp); in vmatch()
1198 else if (anp) in vmatch()
1199 vmatch(infop, anp, NULL, NULL); in vmatch()
1206 infop->anp->file, infop->anp->line, "vmatch: "); in vmatch()
1207 ptree_name_iter(O_ALTFP|O_VERB3|O_NONL, infop->anp); in vmatch()
1211 itree_np2nork(infop->anp->u.arrow.nnp), in vmatch()
1212 itree_np2nork(infop->anp->u.arrow.knp)); in vmatch()
1213 dst = infop->anp->u.arrow.rhs; in vmatch()
1214 src = infop->anp->u.arrow.lhs; in vmatch()
1271 vmatch(infop, NULL, lnp, anp); in vmatch()
1293 anp, wcp); in vmatch()
1301 vmatch(infop, NULL, lnp, anp); in vmatch()
1317 np->u.event.epname, lnp, anp, wcp); in vmatch()
1326 vmatch(infop, NULL, lnp, anp); in vmatch()
1332 vmatch(infop, np->u.expr.right, np->u.expr.left, anp); in vmatch()
1336 ASSERT(lnp == NULL && anp == NULL); in vmatch()
1348 find_first_arrow(struct info *infop, struct node *anp) in find_first_arrow() argument
1350 if (anp->u.arrow.lhs->t == T_ARROW) { in find_first_arrow()
1351 anp->u.arrow.lhs->u.arrow.parent = anp; in find_first_arrow()
1352 find_first_arrow(infop, anp->u.arrow.lhs); in find_first_arrow()
1354 vmatch(infop, anp->u.arrow.lhs, NULL, anp); in find_first_arrow()
1403 struct node *anp = propnp->u.stmt.np; in itree_create() local
1405 ASSERTeq(anp->t, T_ARROW, ptree_nodetype2str); in itree_create()
1407 if (!anp->u.arrow.needed) in itree_create()
1409 Ninfo.anp = anp; in itree_create()
1412 generate_arrownp(anp); in itree_create()
1413 anp->u.arrow.parent = NULL; in itree_create()
1414 find_first_arrow(&Ninfo, anp); in itree_create()
1420 cp_reset(anp); in itree_create()