/src/tests/usr.bin/tmux/ |
t_tmux.sh | 36 atf_test_case stdin 39 "when stdin(4) is closed (PR kern/46463)" 48 atf_add_test_case stdin
|
/src/lib/libc/stdio/ |
getchar.c | 57 FILE *fp = stdin; 69 return __sgetc(stdin);
|
gets.c | 63 FLOCKFILE(stdin); 67 FUNLOCKFILE(stdin); 77 FUNLOCKFILE(stdin);
|
getwchar.c | 48 return fgetwc(stdin);
|
vscanf.c | 59 return __svfscanf(stdin, fmt, ap); 66 return __svfscanf_l(stdin, loc, fmt, ap);
|
vwscanf.c | 50 return vfwscanf(stdin, fmt, ap); 57 return vfwscanf_l(stdin, loc, fmt, ap);
|
scanf.c | 63 ret = __svfscanf(stdin, fmt, ap); 75 ret = __svfscanf_l(stdin, loc, fmt, ap);
|
wscanf.c | 53 r = vfwscanf(stdin, fmt, ap); 66 r = vfwscanf_l(stdin, loc, fmt, ap);
|
/src/games/robots/ |
flush_in.c | 52 tcflush(fileno(stdin), TCIFLUSH);
|
/src/games/hack/ |
hack.ioctl.c | 82 (void) tcgetattr(fileno(stdin), &termios); 88 (void) tcsetattr(fileno(stdin), TCSADRAIN, &termios);
|
/src/usr.bin/make/unit-tests/ |
directive-for-null.exp | 1 make: (stdin):2: Zero byte read from file
|
directive-for-null.mk | 5 # expect: make: (stdin):2: Zero byte read from file
|
opt-file.exp | 4 make: (stdin):1: Zero byte read from file
|
/src/tests/lib/libc/ssp/ |
h_fgets.c | 42 (void)fgets(b, len, stdin);
|
/src/tests/lib/libc/stdio/ |
h_testnumbers.c | 10 while (fgets(line, sizeof(line), stdin) != NULL) {
|
/src/tests/usr.bin/nbperf/ |
hash_driver.c | 46 while ((len = getline(&line, &buflen, stdin)) > 0) {
|
/src/lib/libcurses/ |
initscr.c | 66 if ((_cursesi_screen = newterm((char *) sp, stdout, stdin)) == NULL) {
|
/src/games/battlestar/ |
getcom.c | 48 if (fgets(buf, size, stdin) == NULL) { 49 if (feof(stdin)) 51 clearerr(stdin);
|
/src/sys/arch/ews4800mips/stand/common/ |
inckern.c | 47 ifd = stdin; 52 if ((optarg == 0) || (ifd != stdin)) 94 if (ifd != stdin)
|
/src/usr.bin/uuencode/ |
uuencode.c | 92 if (!freopen(*argv, "r", stdin) || fstat(fileno(stdin), &sb)) 142 while ((n = fread(buf, 1, sizeof(buf), stdin))) { 163 while ((n = fread(buf, 1, 45, stdin)) > 0) { 194 if (ferror(stdin))
|
/src/usr.bin/mail/ |
tty.c | 127 clearerr(stdin); 130 c = getc(stdin); 133 if (feof(stdin)) 143 if (c == EOF && ferror(stdin)) { 145 clearerr(stdin); 200 if (tcgetattr(fileno(stdin), t) == -1) { 221 (void)tcsetattr(fileno(stdin), TCSADRAIN, t); 237 (void)tcsetattr(fileno(stdin), TCSADRAIN, t); 303 if (ioctl(fileno(stdin), TIOCEXT, &flag) == -1) 365 if (ioctl(fileno(stdin), TIOCEXT, &flag) == -1 [all...] |
/src/tests/lib/libc/hash/ |
h_hash.c | 86 while (fgets((char *)buf, sizeof(buf), stdin) != NULL) { 97 fgets((char *)buf, sizeof(buf), stdin) != NULL) { 110 fgets((char *)buf, sizeof(buf), stdin) != NULL) {
|
/src/usr.bin/tset/ |
term.c | 131 if (feof(stdin) || ferror(stdin)) { 142 if (fgets(answer, sizeof(answer), stdin) == NULL) {
|
/src/sys/external/bsd/acpica/dist/tools/efihello/ |
efihello.c | 205 File = stdin;
|
/src/games/boggle/mkdict/ |
mkdict.c | 75 fgets(buf[current], MAXWORDLEN + 1, stdin) != NULL; ++nwords) { 78 while ((ch = getc(stdin)) != EOF && ch != '\n')
|