Home
last modified time | relevance | path

Searched refs:LinkLayerSocketDevice (Results 1 – 4 of 4) sorted by relevance

/system/bt/vendor_libs/test_vendor_lib/model/devices/
Dlink_layer_socket_device.h30 class LinkLayerSocketDevice : public Device {
32 LinkLayerSocketDevice(int socket_fd, Phy::Type phy_type);
33 LinkLayerSocketDevice(LinkLayerSocketDevice&& s) = default;
34 virtual ~LinkLayerSocketDevice() = default;
37 return std::make_shared<LinkLayerSocketDevice>(socket_fd, phy_type); in Create()
Dlink_layer_socket_device.cc33 LinkLayerSocketDevice::LinkLayerSocketDevice(int socket_fd, Phy::Type phy_type) in LinkLayerSocketDevice() function in test_vendor_lib::LinkLayerSocketDevice
36 void LinkLayerSocketDevice::TimerTick() { in TimerTick()
62 void LinkLayerSocketDevice::IncomingPacket(packets::LinkLayerPacketView packet) { in IncomingPacket()
/system/bt/vendor_libs/test_vendor_lib/test/
Dlink_layer_socket_device_test.cc235 std::vector<LinkLayerSocketDevice> servers_;
236 std::vector<LinkLayerSocketDevice> clients_;
/system/bt/vendor_libs/test_vendor_lib/model/setup/
Dtest_model.cc143 std::shared_ptr<Device> dev = LinkLayerSocketDevice::Create(socket_fd, phy_type); in AddLinkLayerConnection()