Lines Matching refs:inbyte
541 unsigned char inbyte = 0xe8; in tnc_init() local
545 sp->tty->ops->write(sp->tty, &inbyte, 1); in tnc_init()
867 static void decode_data(struct sixpack *sp, unsigned char inbyte) in decode_data() argument
872 sp->raw_buf[sp->rx_count++] = inbyte; in decode_data()
883 (buf[2] & 0x03) | (inbyte << 2); in decode_data()
997 unsigned char inbyte; in sixpack_decode() local
1001 inbyte = pre_rbuff[count1]; in sixpack_decode()
1002 if (inbyte == SIXP_FOUND_TNC) { in sixpack_decode()
1006 if ((inbyte & SIXP_PRIO_CMD_MASK) != 0) in sixpack_decode()
1007 decode_prio_command(sp, inbyte); in sixpack_decode()
1008 else if ((inbyte & SIXP_STD_CMD_MASK) != 0) in sixpack_decode()
1009 decode_std_command(sp, inbyte); in sixpack_decode()
1011 decode_data(sp, inbyte); in sixpack_decode()