HomeSort by relevance Sort by last modified time
    Searched refs:Termio (Results 1 - 9 of 9) sorted by null

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

Completed in 250 milliseconds