Symbol: hci_send_cmd
sys/netbt/hci.h
2561
int hci_send_cmd(struct hci_unit *, uint16_t, void *, uint8_t);
sys/netbt/hci_event.c
1012
hci_send_cmd(unit, HCI_CMD_READ_LOCAL_COMMANDS, NULL, 0);
sys/netbt/hci_event.c
1075
if (hci_send_cmd(unit, HCI_CMD_READ_BDADDR, NULL, 0))
sys/netbt/hci_event.c
1078
if (hci_send_cmd(unit, HCI_CMD_READ_BUFFER_SIZE, NULL, 0))
sys/netbt/hci_event.c
1081
if (hci_send_cmd(unit, HCI_CMD_READ_LOCAL_FEATURES, NULL, 0))
sys/netbt/hci_event.c
1084
if (hci_send_cmd(unit, HCI_CMD_READ_LOCAL_VER, NULL, 0))
sys/netbt/hci_event.c
571
hci_send_cmd(unit, HCI_CMD_DISCONNECT, &dp, sizeof(dp));
sys/netbt/hci_event.c
586
err = hci_send_cmd(unit, HCI_CMD_WRITE_LINK_POLICY_SETTINGS,
sys/netbt/hci_event.c
592
err = hci_send_cmd(unit, HCI_CMD_READ_CLOCK_OFFSET,
sys/netbt/hci_event.c
670
hci_send_cmd(unit, HCI_CMD_REJECT_CON, &rp, sizeof(rp));
sys/netbt/hci_event.c
679
hci_send_cmd(unit, HCI_CMD_ACCEPT_CON, &ap, sizeof(ap));
sys/netbt/hci_link.c
109
err = hci_send_cmd(unit, HCI_CMD_CREATE_CON, &cp, sizeof(cp));
sys/netbt/hci_link.c
226
err = hci_send_cmd(link->hl_unit, HCI_CMD_DISCONNECT,
sys/netbt/hci_link.c
269
err = hci_send_cmd(link->hl_unit, HCI_CMD_AUTH_REQ,
sys/netbt/hci_link.c
289
err = hci_send_cmd(link->hl_unit, HCI_CMD_SET_CON_ENCRYPTION,
sys/netbt/hci_link.c
308
err = hci_send_cmd(link->hl_unit, HCI_CMD_CHANGE_CON_LINK_KEY,
sys/netbt/hci_link.c
466
hci_send_cmd(unit, HCI_CMD_DISCONNECT, &cp, sizeof(cp));
sys/netbt/hci_unit.c
170
err = hci_send_cmd(unit, HCI_CMD_RESET, NULL, 0);
sys/netbt/sco_upper.c
165
err = hci_send_cmd(unit, HCI_CMD_ADD_SCO_CON, &cp, sizeof(cp));
sys/netbt/sco_upper.c
213
err = hci_send_cmd(sco->hl_unit, HCI_CMD_DISCONNECT, &cp, sizeof(cp));