Lines Matching defs:infd
56 static wint_t __fgetwc_resize(FILE *infd, bool *resized);
84 FILE *infd = _cursesi_screen->infd;
95 c = __fgetc_resize(infd);
97 clearerr(infd);
137 c = __fgetc_resize(infd);
138 if (c == ERR || ferror(infd)) {
139 clearerr(infd);
149 if (feof(infd)) { /* inter-char T/O, start backout */
150 clearerr(infd);
181 c = __fgetc_resize(infd);
182 if (c == ERR || ferror(infd)) {
183 clearerr(infd);
194 if (feof(infd)) { /* inter-char T/O, start backout */
195 clearerr(infd);
440 FILE *infd = _cursesi_screen->infd;
520 c = __fgetwc_resize(infd, &resized);
522 clearerr(infd);
597 __fgetwc_resize(FILE *infd, bool *resized)
601 c = fgetwc(infd);
605 if (!ferror(infd) || errno != EINTR || !_cursesi_screen->resized)