Home
last modified time | relevance | path

Searched refs:ICRNL (Results 1 – 4 of 4) sorted by relevance

/xnu-8796.121.2/bsd/sys/
H A Dttydefaults.h78 #define TTYDEF_IFLAG (BRKINT | ICRNL | IMAXBEL | IXON | IXANY)
H A Dtermios.h127 #define ICRNL 0x00000100 /* map CR to NL (ala CRMOD) */ macro
/xnu-8796.121.2/bsd/kern/
H A Dtty_compat.c564 if (iflag & ICRNL || oflag & ONLCR) { in ttcompatgetflags()
665 iflag |= ICRNL; in ttcompatsetflags()
668 iflag &= ~ICRNL; in ttcompatsetflags()
H A Dtty.c616 } else if (ISSET(iflag, ICRNL)) { in ttyinput()