Home
last modified time | relevance | path

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

/freebsd/contrib/one-true-awk/
H A Dlex.c33 extern bool infunc;
330 if (c == '(' || c == '[' || (infunc && isarg(buf) >= 0)) { in yylex()
528 if (infunc) in word()
532 if (!infunc) in word()
543 if (c != '(' && infunc && (n=isarg(w)) >= 0) { in word()
H A Dawkgram.y35 bool infunc = false; /* = true if in arglist or body of func */ variable
185 | FUNC funcname '(' varlist rparen {infunc = true;} lbrace stmtlist '}'
186 { infunc = false; curfname=0; defn((Cell *)$2, $4, $8); $$ = 0; }
332 | NEXT st { if (infunc)
335 | NEXTFILE st { if (infunc)
/freebsd/contrib/libbegemot/
H A Drpoll.c643 void infunc(int fd, int mask, void *arg);
655 infunc(int fd, int mask, void *arg) in infunc() function
715 poll_register(0, infunc, NULL, RPOLL_IN); in main()