Lines Matching refs:opcode
97 static pkt_linked_item_t *get_waiting_command(command_opcode_t opcode);
266 HCI_TRACE_DEBUG("HCI Enqueue Command opcode=0x%x\n", metadata->opcode); in transmit_command()
411 …%s hci layer timeout waiting for response to a command. opcode: 0x%x", __func__, metadata->opcode); in command_timed_out()
440 command_opcode_t opcode; in filter_incoming_event() local
449 STREAM_TO_UINT16(opcode, stream); in filter_incoming_event()
450 wait_entry = get_waiting_command(opcode); in filter_incoming_event()
453 …ACE_WARNING("%s command complete event with no matching command. opcode: 0x%x.", __func__, opcode); in filter_incoming_event()
459 HCI_TRACE_WARNING("%s sync_info is NULL. opcode = 0x%x", __func__, opcode); in filter_incoming_event()
461 if (sync_info->sync_sem && sync_info->opcode == opcode) { in filter_incoming_event()
463 sync_info->opcode = 0; in filter_incoming_event()
476 STREAM_TO_UINT16(opcode, stream); in filter_incoming_event()
480 wait_entry = get_waiting_command(opcode); in filter_incoming_event()
483 …_TRACE_WARNING("%s command status event with no matching command. opcode: 0x%x", __func__, opcode); in filter_incoming_event()
559 static pkt_linked_item_t *get_waiting_command(command_opcode_t opcode) in get_waiting_command() argument
570 if (metadata->opcode == opcode) { in get_waiting_command()