Lines Matching full:nf
132 FILE *nf = NULL; in run_editor() local
141 (nf = Fdopen(t, "w")) == NULL) { in run_editor()
152 (void)putc(t, nf); in run_editor()
155 (void)putc(t, nf); in run_editor()
156 (void)fflush(nf); in run_editor()
157 if (fstat(fileno(nf), &statb) < 0) in run_editor()
161 if (ferror(nf)) { in run_editor()
162 (void)Fclose(nf); in run_editor()
165 nf = NULL; in run_editor()
168 if (Fclose(nf) < 0) { in run_editor()
171 nf = NULL; in run_editor()
174 nf = NULL; in run_editor()
200 if ((nf = Fopen(tempname, "a+")) == NULL) { in run_editor()
207 return (nf); in run_editor()