Lines Matching refs:opcode
25 hdr->opcode = __cpu_to_le16(HCI_DRV_EV_CMD_STATUS); in hci_drv_cmd_status()
29 ev->opcode = __cpu_to_le16(cmd); in hci_drv_cmd_status()
50 hdr->opcode = __cpu_to_le16(HCI_DRV_EV_CMD_COMPLETE); in hci_drv_cmd_complete()
54 ev->opcode = __cpu_to_le16(cmd); in hci_drv_cmd_complete()
69 u16 opcode, len, ogf, ocf; in hci_drv_process_cmd() local
75 opcode = __le16_to_cpu(hdr->opcode); in hci_drv_process_cmd()
80 ogf = hci_opcode_ogf(opcode); in hci_drv_process_cmd()
81 ocf = hci_opcode_ocf(opcode); in hci_drv_process_cmd()
84 return hci_drv_cmd_status(hdev, opcode, in hci_drv_process_cmd()
88 if (opcode < hdev->hci_drv->common_handler_count) in hci_drv_process_cmd()
89 handler = &hdev->hci_drv->common_handlers[opcode]; in hci_drv_process_cmd()
96 return hci_drv_cmd_status(hdev, opcode, in hci_drv_process_cmd()
100 return hci_drv_cmd_status(hdev, opcode, in hci_drv_process_cmd()