/src/usr.bin/xlint/lint2/ |
lint2.h | 145 typedef struct fcall { struct 151 struct fcall *f_next; /* next call of same function */
|
read.c | 319 fcall_t *fcall; local in function:funccall 322 fcall = xalloc(sizeof(*fcall)); 323 fcall->f_pos = pos; 327 lai = &fcall->f_args; 369 fcall->f_rused = rused; 370 fcall->f_rdisc = rdisc; 383 fcall->f_type = inptype(cp, &cp); 385 *hte->h_lcall = fcall; 386 hte->h_lcall = &fcall->f_next [all...] |
chk.c | 141 fcall_t *fcall; local in function:check_used_not_defined 147 if ((fcall = hte->h_calls) != NULL) { 149 msg(0, hte->h_name, mkpos(&fcall->f_pos));
|
/src/usr.bin/xlint/lint1/ |
tree.c | 4827 check_expr_addr(const tnode_t *ln, bool szof, bool fcall) 4833 mark_as_used(ln->u.sym, fcall, szof); 4895 check_expr_op(op_t op, const tnode_t *ln, bool szof, bool fcall, bool eqwarn) 4899 check_expr_addr(ln, szof, fcall); 4941 * fcall whether the expression is a function call 4951 bool eqwarn, bool fcall, bool retval_discarded, bool szof) 4979 check_expr_op(op, ln, szof, fcall, eqwarn);
|
decl.c | 2898 mark_as_used(sym_t *sym, bool fcall, bool szof) 2912 if (!fcall && !szof && sym->s_kind == SK_VCFT && sym->s_scl == EXTERN)
|