Lines Matching refs:_Lf
32 static FILE *_Lf = NULL; variable
58 if (_Lf != NULL
60 fclose(_Lf);
61 _Lf = NULL;
64 if (_Lf == NULL) {
66 _Lf = fopen(logfile, "a");
68 if (_Lf == NULL) {
72 setbuf(_Lf, CNULL);
74 (void) fseek(_Lf, 0L, 2);
75 (void) fprintf(_Lf, "%s %s %s ", User, Rmtname, Jobid);
76 (void) fprintf(_Lf, "(%s,%ld,%d) ", timeStamp(), (long) Nstat.t_pid, Seqn);
77 (void) fprintf(_Lf, "%s (%s)\n", status, text);
165 if (_Lf) { in ucloselog()
166 (void) fclose(_Lf); in ucloselog()
167 _Lf = NULL; in ucloselog()