Lines Matching refs:fp
57 FILE *fp = NULL;
74 if ((fp = fopen(sessionlog, "a")) == (FILE *)NULL)
81 if (fcntl(fileno(fp), F_SETLKW, &lk) < 0)
85 fprintf(fp, "%s %s: ", spcstime(), product);
86 (void) vfprintf(fp, format, ap);
87 fputs("\n", fp);
89 spcs_s_report(*status, fp);
91 fflush(fp);
95 (void) fcntl(fileno(fp), F_SETLKW, &lk);
98 if (fp)
99 fclose(fp);