Lines Matching refs:inbyte
532 unsigned char inbyte = 0xe8; in tnc_init() local
536 sp->tty->ops->write(sp->tty, &inbyte, 1); in tnc_init()
832 static void decode_data(struct sixpack *sp, unsigned char inbyte) in decode_data() argument
837 sp->raw_buf[sp->rx_count++] = inbyte; in decode_data()
848 (buf[2] & 0x03) | (inbyte << 2); in decode_data()
954 unsigned char inbyte; in sixpack_decode() local
958 inbyte = pre_rbuff[count1]; in sixpack_decode()
959 if (inbyte == SIXP_FOUND_TNC) { in sixpack_decode()
963 if ((inbyte & SIXP_PRIO_CMD_MASK) != 0) in sixpack_decode()
964 decode_prio_command(sp, inbyte); in sixpack_decode()
965 else if ((inbyte & SIXP_STD_CMD_MASK) != 0) in sixpack_decode()
966 decode_std_command(sp, inbyte); in sixpack_decode()
968 decode_data(sp, inbyte); in sixpack_decode()