Home | History | Annotate | Download | only in ftp

Lines Matching defs:fin

700 	FILE *volatile fin;
743 fin = stdin;
747 fin = popen(local + 1, "r");
748 if (fin == NULL) {
756 fin = fopen(local, "r");
757 if (fin == NULL) {
763 if (fstat(fileno(fin), &st) < 0 || !S_ISREG(st.st_mode)) {
784 rc = fseeko(fin, restart_point, SEEK_SET);
788 rc = lseek(fileno(fin), restart_point, SEEK_SET);
829 c = copy_bytes(fileno(fin), fileno(dout), buf, bufsize,
841 while ((c = getc(fin)) != EOF) {
867 if (ferror(fin))
879 (*closefunc)(fin);
880 fin = NULL;
918 if (closefunc != NULL && fin != NULL)
919 (*closefunc)(fin);