Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/refer/
H A Dhunt8.c71 char fnam[100]; in ckexist() local
72 strcpy(fnam, s); in ckexist()
73 strcat(fnam, t); in ckexist()
74 return (access(fnam, 04) != -1); in ckexist()
80 char fnam[100]; in iopen() local
82 strcpy(fnam, s); in iopen()
83 strcat(fnam, t); in iopen()
84 f = fopen(fnam, "r"); in iopen()
86 err(gettext("Missing expected file %s"), fnam); in iopen()
H A Drefer7.c98 recopy(char *fnam) in recopy() argument
110 ftemp = fopen(fnam, "r"); in recopy()
112 fprintf(stderr, gettext("Can't reopen %s\n"), fnam); in recopy()
147 unlink(fnam); in recopy()
/illumos-gate/usr/src/test/util-tests/tests/awk/gnu/
H A Dpipeio2.awk30 while ((com | getline fnam) > 0 && fnam != "") {
34 com_tr = "echo " fnam " | sed \"s/[0-9]/./g\""