Home
last modified time | relevance | path

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

/coreutils/tests/install/
Dinstall-C.sh49 mode2=0755
104 ginstall -Cv -m$mode2 a b > out || fail=1
106 ginstall -Cv -m$mode2 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()