Home
last modified time | relevance | path

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

/freebsd/sbin/ipf/common/
H A Dipf_y.y21 #define DOALL(x) for (fr = frc; fr != NULL; fr = fr->fr_next) { x } macro
410 tos: | settos YY_NUMBER { DOALL(fr->fr_tos = $2; fr->fr_mtos = 0xff;) }
411 | settos YY_HEX { DOALL(fr->fr_tos = $2; fr->fr_mtos = 0xff;) }
419 YY_NUMBER { DOALL(fr->fr_tos = $1; fr->fr_mtos = 0xff;) }
428 { DOALL(fr->fr_ttl = $2; fr->fr_mttl = 0xff;) }
471 group: | IPFY_GROUP groupname { DOALL(setgroup(&fr, $2); \
477 head: | IPFY_HEAD groupname { DOALL(setgrhead(&fr, $2););
505 nattag: IPFY_NAT '=' YY_STR { DOALL(strncpy(fr->fr_nattag.ipt_tag,\
508 | IPFY_NAT '=' YY_NUMBER { DOALL(sprintf(fr->fr_nattag.ipt_tag,\
512 logtag: IPFY_LOG '=' YY_NUMBER { DOALL(fr->fr_logtag = $3;) }
[all …]
/freebsd/contrib/tcsh/
H A Dsh.lex.c307 while ((c = getC(DOALL)) == ' ' || c == '\t') in word()
316 c1 = getC(DOALL); in word()
363 dolflg = DOALL; in word()
371 dolflg = DOALL; in word()
421 dolflg = c == '"' ? DOALL : DOEXCL; in word()
H A Dsh.h860 #define DOALL DODOL|DOEXCL macro