Lines Matching refs:backend
1 use crate::backend;
12 pub use backend::termios::types::B1000000;
23 pub use backend::termios::types::B1152000;
34 pub use backend::termios::types::B1500000;
45 pub use backend::termios::types::B2000000;
58 pub use backend::termios::types::B2500000;
71 pub use backend::termios::types::B3000000;
84 pub use backend::termios::types::B3500000;
97 pub use backend::termios::types::B4000000;
105 pub use backend::termios::types::B460800;
117 pub use backend::termios::types::B500000;
129 pub use backend::termios::types::B576000;
137 pub use backend::termios::types::B921600;
139 pub use backend::termios::types::BRKINT;
152 pub use backend::termios::types::BS0;
167 pub use backend::termios::types::BS1;
179 pub use backend::termios::types::BSDLY;
190 pub use backend::termios::types::CBAUD;
203 pub use backend::termios::types::CBAUDEX;
215 pub use backend::termios::types::CIBAUD;
217 pub use backend::termios::types::CLOCAL;
231 pub use backend::termios::types::CMSPAR;
244 pub use backend::termios::types::CR0;
259 pub use backend::termios::types::CR1;
274 pub use backend::termios::types::CR2;
289 pub use backend::termios::types::CR3;
301 pub use backend::termios::types::CRDLY;
303 pub use backend::termios::types::CREAD;
305 pub use backend::termios::types::CRTSCTS;
307 pub use backend::termios::types::CS5;
309 pub use backend::termios::types::CS6;
311 pub use backend::termios::types::CS7;
313 pub use backend::termios::types::CS8;
315 pub use backend::termios::types::CSIZE;
317 pub use backend::termios::types::CSTOPB;
319 pub use backend::termios::types::ECHO;
321 pub use backend::termios::types::ECHOCTL;
323 pub use backend::termios::types::ECHOE;
325 pub use backend::termios::types::ECHOK;
327 pub use backend::termios::types::ECHOKE;
329 pub use backend::termios::types::ECHONL;
331 pub use backend::termios::types::ECHOPRT;
341 pub use backend::termios::types::EXTA;
351 pub use backend::termios::types::EXTB;
358 pub use backend::termios::types::EXTPROC;
371 pub use backend::termios::types::FF0;
386 pub use backend::termios::types::FF1;
399 pub use backend::termios::types::FFDLY;
401 pub use backend::termios::types::FLUSHO;
403 pub use backend::termios::types::HUPCL;
405 pub use backend::termios::types::ICRNL;
407 pub use backend::termios::types::IEXTEN;
409 pub use backend::termios::types::IGNBRK;
411 pub use backend::termios::types::IGNCR;
413 pub use backend::termios::types::IGNPAR;
420 pub use backend::termios::types::IMAXBEL;
422 pub use backend::termios::types::INLCR;
424 pub use backend::termios::types::INPCK;
426 pub use backend::termios::types::ISIG;
428 pub use backend::termios::types::ISTRIP;
436 pub use backend::termios::types::IUCLC;
450 pub use backend::termios::types::IUTF8;
452 pub use backend::termios::types::IXANY;
454 pub use backend::termios::types::IXOFF;
456 pub use backend::termios::types::IXON;
469 pub use backend::termios::types::NL0;
482 pub use backend::termios::types::NL1;
494 pub use backend::termios::types::NLDLY;
496 pub use backend::termios::types::NOFLSH;
498 pub use backend::termios::types::OCRNL;
507 pub use backend::termios::types::OFDEL;
516 pub use backend::termios::types::OFILL;
525 pub use backend::termios::types::OLCUC;
527 pub use backend::termios::types::ONLCR;
529 pub use backend::termios::types::ONLRET;
531 pub use backend::termios::types::ONOCR;
533 pub use backend::termios::types::OPOST;
535 pub use backend::termios::types::PARENB;
537 pub use backend::termios::types::PARMRK;
539 pub use backend::termios::types::PARODD;
541 pub use backend::termios::types::PENDIN;
553 pub use backend::termios::types::TAB0;
568 pub use backend::termios::types::TAB1;
583 pub use backend::termios::types::TAB2;
597 pub use backend::termios::types::TAB3;
608 pub use backend::termios::types::TABDLY;
610 pub use backend::termios::types::TOSTOP;
622 pub use backend::termios::types::VSWTC;
635 pub use backend::termios::types::VT0;
650 pub use backend::termios::types::VT1;
663 pub use backend::termios::types::VTDLY;
665 pub use backend::termios::types::XCASE;
678 pub use backend::termios::types::XTABS;
679 pub use backend::termios::types::{
685 pub use backend::termios::types::{VDISCARD, VLNEXT, VREPRINT, VWERASE};
693 pub fn speed_value(speed: backend::termios::types::Speed) -> Option<u32> {
695 backend::termios::types::B0 => Some(0),
696 backend::termios::types::B50 => Some(50),
697 backend::termios::types::B75 => Some(75),
698 backend::termios::types::B110 => Some(110),
699 backend::termios::types::B134 => Some(134),
700 backend::termios::types::B150 => Some(150),
701 backend::termios::types::B200 => Some(200),
702 backend::termios::types::B300 => Some(300),
703 backend::termios::types::B600 => Some(600),
704 backend::termios::types::B1200 => Some(1200),
705 backend::termios::types::B1800 => Some(1800),
706 backend::termios::types::B2400 => Some(2400),
707 backend::termios::types::B4800 => Some(4800),
708 backend::termios::types::B9600 => Some(9600),
709 backend::termios::types::B19200 => Some(19200),
710 backend::termios::types::B38400 => Some(38400),
711 backend::termios::types::B57600 => Some(57600),
712 backend::termios::types::B115200 => Some(115_200),
713 backend::termios::types::B230400 => Some(230_400),
721 backend::termios::types::B460800 => Some(460_800),
733 backend::termios::types::B500000 => Some(500_000),
745 backend::termios::types::B576000 => Some(576_000),
753 backend::termios::types::B921600 => Some(921_600),
764 backend::termios::types::B1000000 => Some(1_000_000),
775 backend::termios::types::B1152000 => Some(1_152_000),
786 backend::termios::types::B1500000 => Some(1_500_000),
797 backend::termios::types::B2000000 => Some(2_000_000),
810 backend::termios::types::B2500000 => Some(2_500_000),
823 backend::termios::types::B3000000 => Some(3_000_000),
836 backend::termios::types::B3500000 => Some(3_500_000),
849 backend::termios::types::B4000000 => Some(4_000_000),