Home
last modified time | relevance | path

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

/freebsd-13.1/usr.sbin/watch/
H A Dwatch.c77 int std_in = 0, std_out = 1; variable
130 tcsetattr(std_in, TCSANOW, &ntty); in set_tty()
137 tcsetattr(std_in, TCSANOW, &otty); in unset_tty()
326 tcgetattr(std_in, &otty); in main()
354 FD_SET(std_in, &fd_s); in main()
357 if (opt_interactive && FD_ISSET(std_in, &fd_s)) { in main()
359 if ((res = ioctl(std_in, FIONREAD, &nread)) != 0) in main()
363 rv = read(std_in, chb, nread); in main()
/freebsd-13.1/share/examples/pf/
H A Dfaq-example235 altq on dc0 cbq bandwidth 2Mb queue { std_in, ssh_im_in, dns_in, bob_in }
38 # std_in - the standard queue. any filter rule below that does not
46 queue std_in bandwidth 1.6Mb cbq(default)
86 queue(std_in, ssh_im_in)
/freebsd-13.1/contrib/file/src/
H A Dfile.c542 int std_in = strcmp(inname, "-") == 0; in process() local
545 (void)printf("%s", std_in ? "/dev/stdin" : inname); in process()
555 type = magic_file(ms, std_in ? NULL : inname); in process()