Home | History | Annotate | Download | only in netbt

Lines Matching defs:hci_link

2441 struct hci_link {
2443 TAILQ_ENTRY(hci_link) hl_next; /* next link on unit */
2466 struct hci_link *hl_link; /* SCO ACL link */
2471 /* hci_link state */
2480 /* hci_link flags */
2549 TAILQ_HEAD(,hci_link) hci_links; /* list of ACL/SCO links */
2581 /* hci_link.c */
2582 struct hci_link *hci_acl_open(struct hci_unit *, bdaddr_t *);
2583 struct hci_link *hci_acl_newconn(struct hci_unit *, bdaddr_t *);
2584 void hci_acl_close(struct hci_link *, int);
2586 int hci_acl_setmode(struct hci_link *);
2587 void hci_acl_linkmode(struct hci_link *);
2589 int hci_acl_send(struct mbuf *, struct hci_link *, struct l2cap_channel *);
2590 void hci_acl_start(struct hci_link *);
2591 void hci_acl_complete(struct hci_link *, int);
2592 struct hci_link *hci_sco_newconn(struct hci_unit *, bdaddr_t *);
2594 void hci_sco_start(struct hci_link *);
2595 void hci_sco_complete(struct hci_link *, int);
2596 struct hci_link *hci_link_alloc(struct hci_unit *, bdaddr_t *, uint8_t);
2597 void hci_link_free(struct hci_link *, int);
2598 struct hci_link *hci_link_lookup_bdaddr(struct hci_unit *, bdaddr_t *, uint8_t);
2599 struct hci_link *hci_link_lookup_handle(struct hci_unit *, uint16_t);