Searched refs:stdin (Results 1 - 25 of 534) sorted by relevance

1234567891011>>

/openbsd-current/regress/usr.bin/wc/
H A Dwc.sh21 stdin=$1
24 result=`echo -n "$stdin" | wc -lwm`
26 echo "echo -n \"$stdin\" | wc -lwm"
27 echo -n "$stdin" | hexdump -C
36 result=`echo -n "$stdin" | wc`
38 echo "echo -n \"$stdin\" | wc"
39 echo -n "$stdin" | hexdump -C
46 result=`echo -n "$stdin" | wc -lwm`
48 echo "[C] echo -n \"$stdin\" | wc -lwm"
49 echo -n "$stdin" | hexdum
[all...]
/openbsd-current/gnu/usr.bin/perl/t/run/
H A DswitchF2.t12 stdin => "1:2",
17 stdin => "1:2",
22 stdin => "1 2",
38 stdin => "a,b,c",
48 stdin => "a,b,c",
/openbsd-current/lib/libc/stdio/
H A Dgetchar.c44 return (getc_unlocked(stdin));
58 return (getc(stdin));
H A Dvscanf.c40 return (vfscanf(stdin, fmt, ap));
H A Dgetwchar.c44 return fgetwc(stdin);
H A Dvwscanf.c37 return (vfwscanf(stdin, fmt, ap));
/openbsd-current/regress/bin/ksh/edit/
H A Dsubr.sh19 stdin=$1
21 act=$(echo -n "$stdin" | ./edit -p "$PS1" -- ${KSH:-/bin/ksh} -r 2>&1)
24 dump input "$stdin"
/openbsd-current/regress/lib/libedit/read/
H A Dtest_read_char.sh20 stdin=$1
24 result=`echo -n "$stdin" | LC_CTYPE=en_US.UTF-8 ./test_read_char`
26 echo "input: >>>$stdin<<<"
31 result=`echo -n "$stdin" | LC_CTYPE=C ./test_read_char`
33 echo "input: >>>$stdin<<<"
/openbsd-current/regress/usr.bin/cut/
H A Dcut.sh25 stdin=$3
28 result=`echo -n "$stdin" | $CUT $args 2>/dev/null`
31 echo "echo -n \"$stdin\" | $CUT $args"
32 echo -n "$stdin" | hexdump -C
38 echo "echo -n \"$stdin\" | $CUT $args"
39 echo -n "$stdin" | hexdump -C
51 result=`echo -n "$stdin" | $CUT $args 2>/dev/null`
53 echo "echo -n \"$stdin\" | $CUT $args"
54 echo -n "$stdin" | hexdump -C
60 echo "[C] echo -n \"$stdin\" |
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/libio/
H A Dstdio.c29 #undef stdin macro
32 _IO_FILE *stdin = (FILE *) &_IO_2_1_stdin_; variable
40 strong_alias (stdin, _IO_stdin);
/openbsd-current/regress/usr.bin/mail/
H A Dsend.sh20 stdin=$1
22 act=$(echo -n "$stdin" | ./edit -p 'Subject: ' mail -En unknown)
26 echo ">>>${stdin}<<<"
27 echo -n "$stdin" | hexdump -C
/openbsd-current/regress/bin/md5/
H A DMakefile7 cksum -x | cmp -s ${.CURDIR}/testsuite.cksum /dev/stdin
10 md5 -x | cmp -s ${.CURDIR}/testsuite.md5 /dev/stdin
13 sha1 -x | cmp -s ${.CURDIR}/testsuite.sha1 /dev/stdin
16 cksum -a sha224 -x | cmp -s ${.CURDIR}/testsuite.sha224 /dev/stdin
19 sha256 -x | cmp -s ${.CURDIR}/testsuite.sha256 /dev/stdin
22 cksum -a sha384 -x | cmp -s ${.CURDIR}/testsuite.sha384 /dev/stdin
25 sha512 -x | cmp -s ${.CURDIR}/testsuite.sha512 /dev/stdin
34 echo hi | md5 -p | cmp -s ${.CURDIR}/pipe_test.md5 /dev/stdin
/openbsd-current/sys/arch/sparc64/dev/
H A Dcons.h33 extern int stdin, stdout;
H A Dconsinit.c62 int stdin = 0, stdout = 0; variable
108 while ((l = OF_read(stdin, &ch, 1)) != 1)
127 if (!stdin) stdin = OF_stdin();
186 DBPRINT(("setting up stdin\r\n"));
188 OF_getprop(chosen, "stdin", &stdin, sizeof(stdin));
189 DBPRINT(("stdin instance = %x\r\n", stdin));
[all...]
/openbsd-current/regress/usr.bin/colrm/
H A Dcolrm.sh22 stdin=$2
25 result=`echo -n "$stdin" | colrm $args ; echo -n .`
27 echo "echo -n \"$stdin\" | colrm $args"
28 echo -n "$stdin" | hexdump -C
40 result=`echo -n "$stdin" | colrm $args ; echo -n .`
42 echo "[C] echo -n \"$stdin\" | colrm $args"
43 echo -n "$stdin" | hexdump -C
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/trad/
H A Dfunlike-5.c9 #define getchar() getc(stdin)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/format/
H A Dc90-scanf-4.c15 fscanf (stdin, "%d", ip);
16 fscanf (stdin, "%ld", ip); /* { dg-warning "format" "fscanf" } */
21 vfscanf (stdin, "%d", v0);
22 vfscanf (stdin, "%Y", v1);
H A Dc99-scanf-3.c14 fscanf (stdin, "%d", ip);
15 fscanf (stdin, "%ld", ip); /* { dg-warning "format" "fscanf" } */
20 vfscanf (stdin, "%d", v0);
21 vfscanf (stdin, "%Y", v1); /* { dg-warning "format" "vfscanf" } */
H A Dext-6.c35 fscanf (stdin, "%d", ip);
36 fscanf (stdin, "%ld", ip); /* { dg-warning "format" "fscanf" } */
41 vfscanf (stdin, "%d", v8);
42 vfscanf (stdin, "%Y", v9); /* { dg-warning "format" "vfscanf" } */
/openbsd-current/games/hack/
H A Dhack.ioctl.c77 (void) tcgetattr(fileno(stdin), &termios);
83 (void) tcsetattr(fileno(stdin), TCSADRAIN, &termios);
/openbsd-current/regress/bin/cat/
H A DMakefile6 cat -be ${.CURDIR}/cat_be.in | cmp -s ${.CURDIR}/cat_be.out /dev/stdin
9 cat -se ${.CURDIR}/cat_se.in | cmp -s ${.CURDIR}/cat_se.out /dev/stdin
/openbsd-current/regress/bin/pax/
H A Dt2.sh7 uudecode -p << '_EOF' | tar ztf - 2> /dev/null | cmp -s $CUR/t2.out /dev/stdin
/openbsd-current/gnu/usr.bin/cvs/vms/
H A Dpc.c25 fgets(line, 511, stdin);
42 if(!feof(stdin))
45 fgets(line, 511, stdin);
/openbsd-current/regress/usr.bin/file/
H A DMakefile9 stdin
23 stdin:
/openbsd-current/gnu/llvm/llvm/utils/count/
H A Dcount.c31 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin);
38 if (!feof(stdin)) {
39 fprintf(stderr, "%s: error reading stdin\n", argv[0]);

Completed in 307 milliseconds

1234567891011>>