Home
last modified time | relevance | path

Searched refs:mode1 (Results 1 – 2 of 2) sorted by relevance

/coreutils/tests/install/
Dinstall-C.sh48 mode1=0644
60 ginstall -Cv -m$mode1 a b > out || fail=1
64 ginstall -Cv -m$mode1 a b > out || fail=1
68 ginstall -v --compare -m$mode1 a b > out || fail=1
72 ginstall -v -m$mode1 a b > out || fail=1
84 ginstall -Cv -m$mode1 c d > out || fail=1
91 ginstall -Cv -m$mode1 a b > out || fail=1
93 ginstall -Cv -m$mode1 a b > out || fail=1
98 ginstall -Cv -m$mode1 a b > out || fail=1
100 ginstall -Cv -m$mode1 a b > out || fail=1
/coreutils/src/
Dstty.c444 static bool eq_mode (struct termios *mode1, struct termios *mode2);
1470 eq_mode (struct termios *mode1, struct termios *mode2) in eq_mode() argument
1472 return mode1->c_iflag == mode2->c_iflag in eq_mode()
1473 && mode1->c_oflag == mode2->c_oflag in eq_mode()
1474 && mode1->c_cflag == mode2->c_cflag in eq_mode()
1475 && mode1->c_lflag == mode2->c_lflag in eq_mode()
1477 && mode1->c_line == mode2->c_line in eq_mode()
1479 && memcmp (mode1->c_cc, mode2->c_cc, sizeof (mode1->c_cc)) == 0 in eq_mode()
1480 && cfgetispeed (mode1) == cfgetispeed (mode2) in eq_mode()
1481 && cfgetospeed (mode1) == cfgetospeed (mode2); in eq_mode()