Lines Matching full:parity
120 * @brief Set parity setting in the termios structure
123 * @param parity
126 enum native_tty_bottom_parity parity) in native_tty_baud_parity_set() argument
128 switch (parity) { in native_tty_baud_parity_set()
141 /* Parity options mark and space are not supported on this driver. */ in native_tty_baud_parity_set()
142 ERROR("Could not set parity.\n"); in native_tty_baud_parity_set()
147 * @brief Get the parity setting from the termios structure
150 * @param parity
153 enum native_tty_bottom_parity *parity) in native_tty_baud_parity_get() argument
156 *parity = NTB_PARITY_NONE; in native_tty_baud_parity_get()
158 *parity = NTB_PARITY_ODD; in native_tty_baud_parity_get()
160 *parity = NTB_PARITY_EVEN; in native_tty_baud_parity_get()
295 native_tty_baud_parity_set(&ter, cfg->parity); in native_tty_configure_bottom()
354 native_tty_baud_parity_get(&ter, &cfg->parity); in native_tty_read_bottom_cfg()