Searched refs:Termio (Results 1 – 9 of 9) sorted by relevance
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/ |
D | CanonRead.c | 42 struct termios *Termio; in IIO_CanonRead() local 59 Termio = &This->Termio; in IIO_CanonRead() 63 IFlag = Termio->c_iflag; in IIO_CanonRead() 64 LFlag = Termio->c_lflag; in IIO_CanonRead() 109 else if(CCEQ(Termio->c_cc[VINTR], InChar)) { in IIO_CanonRead() 121 else if(CCEQ(Termio->c_cc[VQUIT], InChar)) { in IIO_CanonRead() 133 else if(CCEQ(Termio->c_cc[VEOF], InChar)) { in IIO_CanonRead() 138 else if(CCEQ(Termio->c_cc[VEOL], InChar)) { in IIO_CanonRead() 141 else if(CCEQ(Termio->c_cc[VERASE], InChar)) { in IIO_CanonRead() 145 else if(CCEQ(Termio->c_cc[VKILL], InChar)) { in IIO_CanonRead()
|
D | TerminalFunctions.c | 150 struct termios *Termio; in tcgetattr() local 159 Termio = &IIO->Termio; in tcgetattr() 160 (void)CopyMem((void *)pTermios, (const void *)Termio, sizeof(struct termios)); in tcgetattr() 208 struct termios *Termio; in tcsetattr() local 217 Termio = &IIO->Termio; in tcsetattr() 218 (void)CopyMem((void *)Termio, (const void *)pTermios, sizeof(struct termios)); in tcsetattr()
|
D | NonCanonRead.c | 39 struct termios *Termio; in IIO_NonCanonRead() local 49 Termio = &This->Termio; in IIO_NonCanonRead() 51 tioMin = Termio->c_cc[VMIN]; in IIO_NonCanonRead() 52 tioTime = Termio->c_cc[VTIME]; in IIO_NonCanonRead()
|
D | IIOwrite.c | 55 struct termios *Termio; in IIO_WriteOne() local 71 Termio = &This->Termio; in IIO_WriteOne() 72 OFlag = Termio->c_oflag; in IIO_WriteOne() 73 TabWidth = (INT32)This->Termio.c_cc[VTABLEN]; in IIO_WriteOne()
|
D | IIO.c | 80 Flags = This->Termio.c_lflag; in IIO_Read() 280 LFlags = This->Termio.c_lflag & (ECHOK | ECHOE); in IIO_Echo() 402 TempBuf = &IIO->Termio.c_cc[0]; in New_cIIO() 409 IIO->Termio.c_ispeed = B115200; in New_cIIO() 410 IIO->Termio.c_ospeed = B115200; in New_cIIO() 411 IIO->Termio.c_iflag = ICRNL; in New_cIIO() 412 IIO->Termio.c_oflag = OPOST | ONLCR | ONOCR | ONLRET; in New_cIIO() 413 IIO->Termio.c_cflag = 0; in New_cIIO() 414 IIO->Termio.c_lflag = ECHO | ECHONL; in New_cIIO()
|
D | IIOecho.c | 68 LFlags = This->Termio.c_lflag; in IIO_EchoOne()
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/ |
D | SysCalls.c | 666 struct termios *Termio; in open() local 711 Termio = &((cIIO *)filp->devdata)->Termio; in open() 712 Termio->c_iflag = ICRNL | IGNSPEC; in open() 713 Termio->c_oflag = OPOST | ONLCR | OXTABS | ONOEOT | ONOCR | ONLRET | OCTRL; in open() 714 Termio->c_lflag = ECHO | ECHOE | ECHONL | ICANON; in open() 715 Termio->c_cc[VERASE] = 0x08; // ^H Backspace in open() 716 Termio->c_cc[VKILL] = 0x15; // ^U in open() 717 Termio->c_cc[VINTR] = 0x03; // ^C Interrupt character in open()
|
/device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Device/ |
D | IIO.h | 71 struct termios Termio; member
|
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Console/ |
D | daConsole.c | 273 else if((Self->Termio.c_iflag & IGNSPEC) != 0) { in da_ConRawRead()
|