/system/bt/vendor_libs/test_vendor_lib/model/devices/ |
D | link_layer_socket_device.h | 32 LinkLayerSocketDevice(int socket_fd, Phy::Type phy_type); 36 static std::shared_ptr<Device> Create(int socket_fd, Phy::Type phy_type) { in Create() argument 37 return std::make_shared<LinkLayerSocketDevice>(socket_fd, phy_type); in Create()
|
D | link_layer_socket_device.cc | 33 LinkLayerSocketDevice::LinkLayerSocketDevice(int socket_fd, Phy::Type phy_type) in LinkLayerSocketDevice() argument 34 : socket_(socket_fd), phy_type_(phy_type) {} in LinkLayerSocketDevice()
|
D | remote_loopback_device.cc | 53 Phy::Type phy_type = Phy::Type::BR_EDR; in IncomingPacket() local 70 SendLinkLayerPacket(LinkLayerPacketBuilder::ReWrap(extracted_packet), phy_type); in IncomingPacket()
|
D | device.cc | 61 …SendLinkLayerPacket(std::shared_ptr<packets::LinkLayerPacketBuilder> to_send, Phy::Type phy_type) { in SendLinkLayerPacket() argument 62 auto phy_list = phy_layers_[phy_type]; in SendLinkLayerPacket()
|
D | car_kit.cc | 41 [this](std::shared_ptr<packets::LinkLayerPacketBuilder> packet, Phy::Type phy_type) { in CarKit() argument 42 CarKit::SendLinkLayerPacket(packet, phy_type); in CarKit()
|
D | device.h | 78 …d SendLinkLayerPacket(std::shared_ptr<packets::LinkLayerPacketBuilder> packet, Phy::Type phy_type);
|
/system/bt/vendor_libs/test_vendor_lib/model/setup/ |
D | phy_layer_factory.cc | 27 PhyLayerFactory::PhyLayerFactory(Phy::Type phy_type) : phy_type_(phy_type) {} in PhyLayerFactory() argument 86 PhyLayerImpl::PhyLayerImpl(Phy::Type phy_type, uint32_t id, in PhyLayerImpl() argument 89 : PhyLayer(phy_type, id, device_receive), factory_(factory) {} in PhyLayerImpl()
|
D | phy_layer.h | 27 …PhyLayer(Phy::Type phy_type, uint32_t id, const std::function<void(packets::LinkLayerPacketView)>&… in PhyLayer() argument 28 : phy_type_(phy_type), id_(id), transmit_to_device_(device_receive) {} in PhyLayer()
|
D | test_model.cc | 142 void TestModel::AddLinkLayerConnection(int socket_fd, Phy::Type phy_type) { in AddLinkLayerConnection() argument 143 std::shared_ptr<Device> dev = LinkLayerSocketDevice::Create(socket_fd, phy_type); in AddLinkLayerConnection() 146 if (phy_type == phys_[phy_index]->GetType()) { in AddLinkLayerConnection() 157 void TestModel::AddRemote(const std::string& server, int port, Phy::Type phy_type) { in AddRemote() argument 162 AddLinkLayerConnection(socket_fd, phy_type); in AddRemote()
|
D | phy_layer_factory.h | 33 PhyLayerFactory(Phy::Type phy_type); 58 …PhyLayerImpl(Phy::Type phy_type, uint32_t id, const std::function<void(packets::LinkLayerPacketVie…
|
D | test_model.h | 62 void AddLinkLayerConnection(int socket_fd, Phy::Type phy_type); 67 void AddRemote(const std::string& server, int port, Phy::Type phy_type);
|
D | test_command_handler.cc | 134 Phy::Type phy_type = Phy::Type::BR_EDR; in AddRemote() local 136 phy_type = Phy::Type::LOW_ENERGY; in AddRemote() 147 model_.AddRemote(args[0], port, phy_type); in AddRemote()
|
/system/bt/vendor_libs/test_vendor_lib/model/controller/ |
D | dual_mode_controller.h | 68 … SendLinkLayerPacket(std::shared_ptr<packets::LinkLayerPacketBuilder> to_send, Phy::Type phy_type);
|
D | dual_mode_controller.cc | 79 Phy::Type phy_type) { in SendLinkLayerPacket() argument 82 if (phy_type != std::get<0>(phy_pair)) { in SendLinkLayerPacket() 136 [this](std::shared_ptr<packets::LinkLayerPacketBuilder> packet, Phy::Type phy_type) { in DualModeController() argument 137 DualModeController::SendLinkLayerPacket(packet, phy_type); in DualModeController()
|
D | link_layer_controller.h | 227 …std::function<void(std::shared_ptr<packets::LinkLayerPacketBuilder>, Phy::Type phy_type)> send_to_…
|