Lines Matching defs:fnp
130 struct filename *fnp;
204 for (fnp = fnanchor; fnp; fnp = fnp->fn_next) {
207 printstatus(fnp->fn_name);
210 lockfs(fnp->fn_name);
213 flushfs(fnp->fn_name);
423 struct filename *fnp;
439 fnp = (struct filename *)malloc(sizeof (struct filename));
440 fnp->fn_name = malloc((uint_t)fnlen);
441 strcpy(fnp->fn_name, mntp->mnt_mountp);
442 fnp->fn_next = NULL;
444 fnpc->fn_next = fnp;
446 fnanchor = fnp;
447 fnpc = fnp;
458 struct filename *fnp;
462 fnp = (struct filename *)malloc(sizeof (struct filename));
463 fnp->fn_name = *(argv+i);
464 fnp->fn_next = NULL;
466 fnpc->fn_next = fnp;
468 fnanchor = fnp;
469 fnpc = fnp;