Lines Matching refs:fout
931 FILE *volatile fout; in recvrequest() local
950 fout = NULL; in recvrequest()
1049 fout = stdout; in recvrequest()
1054 fout = popen(local + 1, "w"); in recvrequest()
1055 if (fout == NULL) { in recvrequest()
1063 fout = fopen(local, lmode); in recvrequest()
1064 if (fout == NULL) { in recvrequest()
1071 if (fstat(fileno(fout), &st) != -1 && !S_ISREG(st.st_mode)) { in recvrequest()
1091 lseek(fileno(fout), restart_point, SEEK_SET) < 0) { in recvrequest()
1095 c = copy_bytes(fileno(din), fileno(fout), buf, bufsize, in recvrequest()
1111 if (fseeko(fout, (off_t)0, SEEK_SET) < 0) in recvrequest()
1114 if ((ch = getc(fout)) == EOF) in recvrequest()
1119 if (fseeko(fout, (off_t)0, SEEK_CUR) < 0) { in recvrequest()
1136 if (ferror(fout)) in recvrequest()
1138 (void)putc('\r', fout); in recvrequest()
1147 (void)putc(c, fout); in recvrequest()
1162 if (ferror(fout)) in recvrequest()
1169 (*closefunc)(fout); in recvrequest()
1170 fout = NULL; in recvrequest()
1227 if (closefunc != NULL && fout != NULL) in recvrequest()
1228 (*closefunc)(fout); in recvrequest()