Lines Matching refs:inbyte
535 unsigned char inbyte = 0xe8; in tnc_init() local
539 sp->tty->ops->write(sp->tty, &inbyte, 1); in tnc_init()
857 static void decode_data(struct sixpack *sp, unsigned char inbyte) in decode_data() argument
862 sp->raw_buf[sp->rx_count++] = inbyte; in decode_data()
873 (buf[2] & 0x03) | (inbyte << 2); in decode_data()
982 unsigned char inbyte; in sixpack_decode() local
986 inbyte = pre_rbuff[count1]; in sixpack_decode()
987 if (inbyte == SIXP_FOUND_TNC) { in sixpack_decode()
991 if ((inbyte & SIXP_PRIO_CMD_MASK) != 0) in sixpack_decode()
992 decode_prio_command(sp, inbyte); in sixpack_decode()
993 else if ((inbyte & SIXP_STD_CMD_MASK) != 0) in sixpack_decode()
994 decode_std_command(sp, inbyte); in sixpack_decode()
996 decode_data(sp, inbyte); in sixpack_decode()