Symbol: ng_hci_cmd_pkt_t
sys/netgraph7/bluetooth/drivers/ubt/ng_ubt_var.h
100
sizeof(ng_hci_cmd_pkt_t) + NG_HCI_CMD_PKT_SIZE)
sys/netgraph7/bluetooth/hci/ng_hci_cmds.c
351
if (mtod(m, ng_hci_cmd_pkt_t *)->opcode != opcode) {
sys/netgraph7/bluetooth/hci/ng_hci_cmds.c
372
m_adj(*cp, sizeof(ng_hci_cmd_pkt_t));
sys/netgraph7/bluetooth/hci/ng_hci_cmds.c
406
opcode = le16toh(mtod(m, ng_hci_cmd_pkt_t *)->opcode);
sys/netgraph7/bluetooth/hci/ng_hci_evnt.c
513
ng_hci_cmd_pkt_t hdr;
sys/netgraph7/bluetooth/hci/ng_hci_main.c
1034
if (m->m_pkthdr.len < sizeof(ng_hci_cmd_pkt_t)) {
sys/netgraph7/bluetooth/hci/ng_hci_main.c
1043
NG_HCI_M_PULLUP(m, sizeof(ng_hci_cmd_pkt_t));
sys/netgraph7/bluetooth/hci/ng_hci_main.c
1050
mtod(m, ng_hci_cmd_pkt_t *)->length + sizeof(ng_hci_cmd_pkt_t)) {
sys/netgraph7/bluetooth/hci/ng_hci_main.c
1054
mtod(m, ng_hci_cmd_pkt_t *)->length);
sys/netgraph7/bluetooth/hci/ng_hci_main.c
1060
if (mtod(m, ng_hci_cmd_pkt_t *)->opcode == 0) {
sys/netgraph7/bluetooth/hci/ng_hci_ulpi.c
112
ng_hci_cmd_pkt_t hdr;
sys/netgraph7/bluetooth/hci/ng_hci_ulpi.c
312
ng_hci_cmd_pkt_t hdr;
sys/netgraph7/bluetooth/hci/ng_hci_ulpi.c
480
ng_hci_cmd_pkt_t hdr;
sys/netgraph7/bluetooth/hci/ng_hci_ulpi.c
685
ng_hci_cmd_pkt_t hdr;
sys/netgraph7/bluetooth/hci/ng_hci_ulpi.c
937
ng_hci_cmd_pkt_t hdr;
sys/netgraph7/bluetooth/socket/ng_btsocket_hci_raw.c
1632
if (m->m_pkthdr.len < sizeof(ng_hci_cmd_pkt_t) ||
sys/netgraph7/bluetooth/socket/ng_btsocket_hci_raw.c
1633
m->m_pkthdr.len > sizeof(ng_hci_cmd_pkt_t) + NG_HCI_CMD_PKT_SIZE) {
sys/netgraph7/bluetooth/socket/ng_btsocket_hci_raw.c
1638
if (m->m_len < sizeof(ng_hci_cmd_pkt_t)) {
sys/netgraph7/bluetooth/socket/ng_btsocket_hci_raw.c
1639
if ((m = m_pullup(m, sizeof(ng_hci_cmd_pkt_t))) == NULL) {
sys/netgraph7/bluetooth/socket/ng_btsocket_hci_raw.c
679
opcode = le16toh(mtod(m, ng_hci_cmd_pkt_t *)->opcode);