v24_sig           150 include/net/bluetooth/rfcomm.h 	u8  v24_sig;
v24_sig           183 include/net/bluetooth/rfcomm.h 	u8            v24_sig;
v24_sig           200 include/net/bluetooth/rfcomm.h 	void (*modem_status)(struct rfcomm_dlc *d, u8 v24_sig);
v24_sig           242 include/net/bluetooth/rfcomm.h int  rfcomm_dlc_set_modem_status(struct rfcomm_dlc *d, u8 v24_sig);
v24_sig           243 include/net/bluetooth/rfcomm.h int  rfcomm_dlc_get_modem_status(struct rfcomm_dlc *d, u8 *v24_sig);
v24_sig            60 net/bluetooth/rfcomm/core.c static int rfcomm_send_msc(struct rfcomm_session *s, int cr, u8 dlci, u8 v24_sig);
v24_sig           297 net/bluetooth/rfcomm/core.c 	d->v24_sig    = RFCOMM_V24_RTC | RFCOMM_V24_RTR | RFCOMM_V24_DV;
v24_sig           595 net/bluetooth/rfcomm/core.c 		d->v24_sig |= RFCOMM_V24_FC;
v24_sig           606 net/bluetooth/rfcomm/core.c 		d->v24_sig &= ~RFCOMM_V24_FC;
v24_sig           617 net/bluetooth/rfcomm/core.c int rfcomm_dlc_set_modem_status(struct rfcomm_dlc *d, u8 v24_sig)
v24_sig           620 net/bluetooth/rfcomm/core.c 			d, d->state, v24_sig);
v24_sig           623 net/bluetooth/rfcomm/core.c 		v24_sig |= RFCOMM_V24_FC;
v24_sig           625 net/bluetooth/rfcomm/core.c 		v24_sig &= ~RFCOMM_V24_FC;
v24_sig           627 net/bluetooth/rfcomm/core.c 	d->v24_sig = v24_sig;
v24_sig           635 net/bluetooth/rfcomm/core.c int rfcomm_dlc_get_modem_status(struct rfcomm_dlc *d, u8 *v24_sig)
v24_sig           638 net/bluetooth/rfcomm/core.c 			d, d->state, d->v24_sig);
v24_sig           640 net/bluetooth/rfcomm/core.c 	*v24_sig = d->v24_sig;
v24_sig          1024 net/bluetooth/rfcomm/core.c static int rfcomm_send_msc(struct rfcomm_session *s, int cr, u8 dlci, u8 v24_sig)
v24_sig          1031 net/bluetooth/rfcomm/core.c 	BT_DBG("%p cr %d v24 0x%x", s, cr, v24_sig);
v24_sig          1044 net/bluetooth/rfcomm/core.c 	msc->v24_sig = v24_sig | 0x01;
v24_sig          1188 net/bluetooth/rfcomm/core.c 			rfcomm_send_msc(s, 1, dlci, d->v24_sig);
v24_sig          1302 net/bluetooth/rfcomm/core.c 	rfcomm_send_msc(d->session, 1, d->dlci, d->v24_sig);
v24_sig          1578 net/bluetooth/rfcomm/core.c 	BT_DBG("dlci %d cr %d v24 0x%x", dlci, cr, msc->v24_sig);
v24_sig          1585 net/bluetooth/rfcomm/core.c 		if (msc->v24_sig & RFCOMM_V24_FC && !d->cfc)
v24_sig          1592 net/bluetooth/rfcomm/core.c 		d->remote_v24_sig = msc->v24_sig;
v24_sig          1595 net/bluetooth/rfcomm/core.c 			d->modem_status(d, msc->v24_sig);
v24_sig          1599 net/bluetooth/rfcomm/core.c 		rfcomm_send_msc(s, 0, dlci, msc->v24_sig);
v24_sig          1801 net/bluetooth/rfcomm/core.c 		rfcomm_send_msc(d->session, 1, d->dlci, d->v24_sig);
v24_sig            77 net/bluetooth/rfcomm/tty.c static void rfcomm_dev_modem_status(struct rfcomm_dlc *dlc, u8 v24_sig);
v24_sig           641 net/bluetooth/rfcomm/tty.c static void rfcomm_dev_modem_status(struct rfcomm_dlc *dlc, u8 v24_sig)
v24_sig           647 net/bluetooth/rfcomm/tty.c 	BT_DBG("dlc %p dev %p v24_sig 0x%02x", dlc, dev, v24_sig);
v24_sig           649 net/bluetooth/rfcomm/tty.c 	if ((dev->modem_status & TIOCM_CD) && !(v24_sig & RFCOMM_V24_DV))
v24_sig           653 net/bluetooth/rfcomm/tty.c 		((v24_sig & RFCOMM_V24_RTC) ? (TIOCM_DSR | TIOCM_DTR) : 0) |
v24_sig           654 net/bluetooth/rfcomm/tty.c 		((v24_sig & RFCOMM_V24_RTR) ? (TIOCM_RTS | TIOCM_CTS) : 0) |
v24_sig           655 net/bluetooth/rfcomm/tty.c 		((v24_sig & RFCOMM_V24_IC)  ? TIOCM_RI : 0) |
v24_sig           656 net/bluetooth/rfcomm/tty.c 		((v24_sig & RFCOMM_V24_DV)  ? TIOCM_CD : 0);
v24_sig          1073 net/bluetooth/rfcomm/tty.c 	u8 v24_sig;
v24_sig          1077 net/bluetooth/rfcomm/tty.c 	rfcomm_dlc_get_modem_status(dlc, &v24_sig);
v24_sig          1080 net/bluetooth/rfcomm/tty.c 		v24_sig |= RFCOMM_V24_RTC;
v24_sig          1082 net/bluetooth/rfcomm/tty.c 		v24_sig |= RFCOMM_V24_RTR;
v24_sig          1084 net/bluetooth/rfcomm/tty.c 		v24_sig |= RFCOMM_V24_IC;
v24_sig          1086 net/bluetooth/rfcomm/tty.c 		v24_sig |= RFCOMM_V24_DV;
v24_sig          1089 net/bluetooth/rfcomm/tty.c 		v24_sig &= ~RFCOMM_V24_RTC;
v24_sig          1091 net/bluetooth/rfcomm/tty.c 		v24_sig &= ~RFCOMM_V24_RTR;
v24_sig          1093 net/bluetooth/rfcomm/tty.c 		v24_sig &= ~RFCOMM_V24_IC;
v24_sig          1095 net/bluetooth/rfcomm/tty.c 		v24_sig &= ~RFCOMM_V24_DV;
v24_sig          1097 net/bluetooth/rfcomm/tty.c 	rfcomm_dlc_set_modem_status(dlc, v24_sig);