Home
last modified time | relevance | path

Searched refs:hci_ (Results 1 – 2 of 2) sorted by relevance

/device/linaro/hikey/bluetooth/
Dbluetooth_hci.cc52 hci_ = new hci::H4Protocol( in initialize()
80 for_hci, [this](int fd) { hci_->OnDataReady(fd); }); in initialize()
97 if (hci_ != nullptr) { in close()
98 delete hci_; in close()
99 hci_ = nullptr; in close()
106 hci_->Send(HCI_PACKET_TYPE_COMMAND, packet.data(), packet.size()); in sendHciCommand()
111 hci_->Send(HCI_PACKET_TYPE_ACL_DATA, packet.data(), packet.size()); in sendAclData()
116 hci_->Send(HCI_PACKET_TYPE_SCO_DATA, packet.data(), packet.size()); in sendScoData()
Dbluetooth_hci.h64 hci::H4Protocol* hci_; variable