Lines Matching refs:fa
68 match(struct filearg *fa, struct kinfo_file *kf) in match() argument
70 if (fa->dev == kf->va_fsid) { in match()
73 if (fa->ino == kf->va_fileid) in match()
86 struct filearg *fa; in fuser_check() local
92 SLIST_FOREACH(fa, &fileargs, next) { in fuser_check()
93 if (!match(fa, kf)) in fuser_check()
100 if (TAILQ_EMPTY(&fa->fusers) || kf->p_pid != in fuser_check()
101 (fu = TAILQ_LAST(&fa->fusers, fuserhead))->pid) { in fuser_check()
108 TAILQ_INSERT_TAIL(&fa->fusers, fu, tq); in fuser_check()
167 struct filearg *fa; in fuser_run() local
171 SLIST_FOREACH(fa, &fileargs, next) { in fuser_run()
172 fprintf(stderr, "%s: ", fa->name); in fuser_run()
173 TAILQ_FOREACH(fu, &fa->fusers, tq) { in fuser_run()