Home
last modified time | relevance | path

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

/netbsd/src/external/bsd/ipf/dist/tools/
Dipf_y.y23 #define DOALL(x) for (fr = frc; fr != NULL; fr = fr->fr_next) { x } macro
412 tos: | settos YY_NUMBER { DOALL(fr->fr_tos = $2; fr->fr_mtos = 0xff;) }
413 | settos YY_HEX { DOALL(fr->fr_tos = $2; fr->fr_mtos = 0xff;) }
421 YY_NUMBER { DOALL(fr->fr_tos = $1; fr->fr_mtos = 0xff;) }
430 { DOALL(fr->fr_ttl = $2; fr->fr_mttl = 0xff;) }
473 group: | IPFY_GROUP groupname { DOALL(setgroup(&fr, $2); \
479 head: | IPFY_HEAD groupname { DOALL(setgrhead(&fr, $2););
507 nattag: IPFY_NAT '=' YY_STR { DOALL(strncpy(fr->fr_nattag.ipt_tag,\
510 | IPFY_NAT '=' YY_NUMBER { DOALL(sprintf(fr->fr_nattag.ipt_tag,\
514 logtag: IPFY_LOG '=' YY_NUMBER { DOALL(fr->fr_logtag = $3;) }
[all …]
/netbsd/src/bin/csh/
Dlex.c266 while ((c = getC(DOALL)) == ' ' || c == '\t') in word()
275 c1 = getC(DOALL); in word()
314 dolflg = DOALL; in word()
319 dolflg = DOALL; in word()
355 dolflg = c == '"' ? DOALL : DOEXCL; in word()
Dcsh.h289 #define DOALL DODOL|DOEXCL macro