Lines Matching refs:cp
781 struct hci_cp_accept_conn_req cp;
783 bacpy(&cp.bdaddr, &conn->dst);
784 cp.role = 0x00; /* Ignored */
786 hci_send_cmd(hdev, HCI_OP_ACCEPT_CONN_REQ, sizeof(cp), &cp);
788 struct hci_cp_accept_sync_conn_req cp;
790 bacpy(&cp.bdaddr, &conn->dst);
791 cp.pkt_type = cpu_to_le16(conn->pkt_type);
793 cp.tx_bandwidth = cpu_to_le32(0x00001f40);
794 cp.rx_bandwidth = cpu_to_le32(0x00001f40);
795 cp.content_format = cpu_to_le16(setting);
800 cp.max_latency = cpu_to_le16(0x0008);
802 cp.max_latency = cpu_to_le16(0x000D);
804 cp.retrans_effort = 0x02;
807 cp.max_latency = cpu_to_le16(0xffff);
808 cp.retrans_effort = 0xff;
812 cp.max_latency = cpu_to_le16(0xffff);
813 cp.retrans_effort = 0xff;
817 hci_send_cmd(hdev, HCI_OP_ACCEPT_SYNC_CONN_REQ, sizeof(cp), &cp);