Lines Matching full:environment
5 #include "cast/streaming/environment.h"
17 Environment::Environment(ClockNowFunctionPtr now_function, in Environment() function in openscreen::cast::Environment
35 Environment::~Environment() = default;
37 IPEndpoint Environment::GetBoundLocalEndpoint() const { in GetBoundLocalEndpoint()
44 void Environment::SetSocketSubscriber(SocketSubscriber* subscriber) { in SetSocketSubscriber()
48 void Environment::ConsumeIncomingPackets(PacketConsumer* packet_consumer) { in ConsumeIncomingPackets()
54 void Environment::DropIncomingPackets() { in DropIncomingPackets()
58 int Environment::GetMaxPacketSize() const { in GetMaxPacketSize()
73 void Environment::SendPacket(absl::Span<const uint8_t> packet) { in SendPacket()
81 Environment::PacketConsumer::~PacketConsumer() = default;
83 void Environment::OnBound(UdpSocket* socket) { in OnBound()
92 void Environment::OnError(UdpSocket* socket, Error error) { in OnError()
111 void Environment::OnSendError(UdpSocket* socket, Error error) { in OnSendError()
115 void Environment::OnRead(UdpSocket* socket, in OnRead()