Lines Matching refs:inbyte
531 unsigned char inbyte = 0xe8;
535 sp->tty->ops->write(sp->tty, &inbyte, 1);
833 static void decode_data(struct sixpack *sp, unsigned char inbyte)
838 sp->raw_buf[sp->rx_count++] = inbyte;
855 (buf[2] & 0x03) | (inbyte << 2);
961 unsigned char inbyte;
965 inbyte = pre_rbuff[count1];
966 if (inbyte == SIXP_FOUND_TNC) {
970 if ((inbyte & SIXP_PRIO_CMD_MASK) != 0)
971 decode_prio_command(sp, inbyte);
972 else if ((inbyte & SIXP_STD_CMD_MASK) != 0)
973 decode_std_command(sp, inbyte);
975 decode_data(sp, inbyte);