Searched refs:HciSocketDevice (Results 1 – 3 of 3) sorted by relevance
27 class HciSocketDevice : public DualModeController {29 HciSocketDevice(int socket_fd);30 ~HciSocketDevice() = default;32 static std::shared_ptr<HciSocketDevice> Create(int socket_fd) { in Create()33 return std::make_shared<HciSocketDevice>(socket_fd); in Create()
30 HciSocketDevice::HciSocketDevice(int file_descriptor) : socket_file_descriptor_(file_descriptor) { in HciSocketDevice() function in test_vendor_lib::HciSocketDevice116 void HciSocketDevice::TimerTick() { in TimerTick()121 void HciSocketDevice::SendHci( in SendHci()133 void HciSocketDevice::RegisterCloseCallback(std::function<void()> close_callback) { in RegisterCloseCallback()
191 auto dev = HciSocketDevice::Create(socket_fd); in IncomingHciConnection()