Home
last modified time | relevance | path

Searched refs:rfcomm_dlc (Results 1 – 4 of 4) sorted by relevance

/Linux-v6.1/include/net/bluetooth/
Drfcomm.h169 struct rfcomm_dlc { struct
197 void (*data_ready)(struct rfcomm_dlc *d, struct sk_buff *skb); argument
198 void (*state_change)(struct rfcomm_dlc *d, int err); argument
199 void (*modem_status)(struct rfcomm_dlc *d, u8 v24_sig); argument
234 struct rfcomm_dlc *rfcomm_dlc_alloc(gfp_t prio);
235 void rfcomm_dlc_free(struct rfcomm_dlc *d);
236 int rfcomm_dlc_open(struct rfcomm_dlc *d, bdaddr_t *src, bdaddr_t *dst,
238 int rfcomm_dlc_close(struct rfcomm_dlc *d, int reason);
239 int rfcomm_dlc_send(struct rfcomm_dlc *d, struct sk_buff *skb);
240 void rfcomm_dlc_send_noerror(struct rfcomm_dlc *d, struct sk_buff *skb);
[all …]
/Linux-v6.1/net/bluetooth/rfcomm/
Dcore.c56 static int rfcomm_queue_disc(struct rfcomm_dlc *d);
58 static int rfcomm_send_pn(struct rfcomm_session *s, int cr, struct rfcomm_dlc *d);
208 static int rfcomm_check_security(struct rfcomm_dlc *d) in rfcomm_check_security()
259 struct rfcomm_dlc *d = from_timer(d, t, timer); in rfcomm_dlc_timeout()
268 static void rfcomm_dlc_set_timer(struct rfcomm_dlc *d, long timeout) in rfcomm_dlc_set_timer()
276 static void rfcomm_dlc_clear_timer(struct rfcomm_dlc *d) in rfcomm_dlc_clear_timer()
284 static void rfcomm_dlc_clear_state(struct rfcomm_dlc *d) in rfcomm_dlc_clear_state()
299 struct rfcomm_dlc *rfcomm_dlc_alloc(gfp_t prio) in rfcomm_dlc_alloc()
301 struct rfcomm_dlc *d = kzalloc(sizeof(*d), prio); in rfcomm_dlc_alloc()
319 void rfcomm_dlc_free(struct rfcomm_dlc *d) in rfcomm_dlc_free()
[all …]
Dtty.c62 struct rfcomm_dlc *dlc;
74 static void rfcomm_dev_data_ready(struct rfcomm_dlc *dlc, struct sk_buff *skb);
75 static void rfcomm_dev_state_change(struct rfcomm_dlc *dlc, int err);
76 static void rfcomm_dev_modem_status(struct rfcomm_dlc *dlc, u8 v24_sig);
83 struct rfcomm_dlc *dlc = dev->dlc; in rfcomm_dev_destruct()
218 struct rfcomm_dlc *dlc) in __rfcomm_dev_add()
318 static int rfcomm_dev_add(struct rfcomm_dev_req *req, struct rfcomm_dlc *dlc) in rfcomm_dev_add()
354 struct rfcomm_dlc *dlc = dev->dlc; in rfcomm_room()
394 struct rfcomm_dlc *dlc; in __rfcomm_create_dev()
603 static void rfcomm_dev_data_ready(struct rfcomm_dlc *dlc, struct sk_buff *skb) in rfcomm_dev_data_ready()
[all …]
Dsock.c50 static void rfcomm_sk_data_ready(struct rfcomm_dlc *d, struct sk_buff *skb) in rfcomm_sk_data_ready()
64 static void rfcomm_sk_state_change(struct rfcomm_dlc *d, int err) in rfcomm_sk_state_change()
155 struct rfcomm_dlc *d = rfcomm_pi(sk)->dlc; in rfcomm_sock_destruct()
207 struct rfcomm_dlc *d = rfcomm_pi(sk)->dlc; in __rfcomm_sock_close()
273 struct rfcomm_dlc *d; in rfcomm_sock_alloc()
385 struct rfcomm_dlc *d = rfcomm_pi(sk)->dlc; in rfcomm_sock_connect()
560 struct rfcomm_dlc *d = rfcomm_pi(sk)->dlc; in rfcomm_sock_sendmsg()
600 struct rfcomm_dlc *d = rfcomm_pi(sk)->dlc; in rfcomm_sock_recvmsg()
939 int rfcomm_connect_ind(struct rfcomm_session *s, u8 channel, struct rfcomm_dlc **d) in rfcomm_connect_ind()