Home
last modified time | relevance | path

Searched refs:std_in (Results 1 – 3 of 3) sorted by relevance

/freebsd/usr.sbin/watch/
H A Dwatch.c74 int std_in = 0, std_out = 1; variable
127 tcsetattr(std_in, TCSANOW, &ntty); in set_tty()
134 tcsetattr(std_in, TCSANOW, &otty); in unset_tty()
323 tcgetattr(std_in, &otty); in main()
351 FD_SET(std_in, &fd_s); in main()
354 if (opt_interactive && FD_ISSET(std_in, &fd_s)) { in main()
356 if ((res = ioctl(std_in, FIONREAD, &nread)) != 0) in main()
360 rv = read(std_in, chb, nread); in main()
/freebsd/share/examples/pf/
H A Dfaq-example234 altq on dc0 cbq bandwidth 2Mb queue { std_in, ssh_im_in, dns_in, bob_in }
37 # std_in - the standard queue. any filter rule below that does not
45 queue std_in bandwidth 1.6Mb cbq(default)
85 queue(std_in, ssh_im_in)
/freebsd/contrib/file/src/
H A Dfile.c633 int std_in = strcmp(inname, "-") == 0; in process() local
637 const char *pname = std_in ? "/dev/stdin" : inname; in process()
651 type = magic_file(ms, std_in ? NULL : inname); in process()