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()
861 static void decode_data(struct sixpack *sp, unsigned char inbyte) in decode_data() argument
866 sp->raw_buf[sp->rx_count++] = inbyte; in decode_data()
877 (buf[2] & 0x03) | (inbyte << 2); in decode_data()
991 unsigned char inbyte; in sixpack_decode() local
995 inbyte = pre_rbuff[count1]; in sixpack_decode()
996 if (inbyte == SIXP_FOUND_TNC) { in sixpack_decode()
1000 if ((inbyte & SIXP_PRIO_CMD_MASK) != 0) in sixpack_decode()
1001 decode_prio_command(sp, inbyte); in sixpack_decode()
1002 else if ((inbyte & SIXP_STD_CMD_MASK) != 0) in sixpack_decode()
1003 decode_std_command(sp, inbyte); in sixpack_decode()
1005 decode_data(sp, inbyte); in sixpack_decode()