Home
last modified time | relevance | path

Searched refs:device_receive (Results 1 – 3 of 3) sorted by relevance

/system/bt/vendor_libs/test_vendor_lib/model/setup/
Dphy_layer_factory.cc34 const std::function<void(packets::LinkLayerPacketView)>& device_receive) { in GetPhyLayer() argument
36 …std::make_shared<PhyLayerImpl>(phy_type_, next_id_++, device_receive, std::shared_ptr<PhyLayerFact… in GetPhyLayer()
87 const std::function<void(packets::LinkLayerPacketView)>& device_receive, in PhyLayerImpl() argument
89 : PhyLayer(phy_type, id, device_receive), factory_(factory) {} in PhyLayerImpl()
Dphy_layer.h27 …ype phy_type, uint32_t id, const std::function<void(packets::LinkLayerPacketView)>& device_receive) in PhyLayer() argument
28 : phy_type_(phy_type), id_(id), transmit_to_device_(device_receive) {} in PhyLayer()
Dphy_layer_factory.h39 …ptr<PhyLayer> GetPhyLayer(const std::function<void(packets::LinkLayerPacketView)>& device_receive);
58 …ype phy_type, uint32_t id, const std::function<void(packets::LinkLayerPacketView)>& device_receive,