HomeSort by relevance Sort by last modified time
    Searched refs:UdpTransport (Results 1 - 7 of 7) sorted by null

  /external/webrtc/webrtc/test/channel_transport/
channel_transport.h 50 UdpTransport* socket_transport_;
udp_transport_unittest.cc 112 UdpTransport* transport = UdpTransport::Create(id, threads);
113 UdpTransport::Destroy(transport);
121 UdpTransport* transport = new UdpTransportImpl(id,
132 UdpTransport* transport = new UdpTransportImpl(id,
channel_transport.cc 34 socket_transport_ = UdpTransport::Create(channel, socket_threads);
46 UdpTransport::Destroy(socket_transport_);
udp_transport.h 95 // Callback class that receives packets from UdpTransport.
111 class UdpTransport : public Transport {
141 static UdpTransport* Create(const int32_t id, uint8_t& numSocketThreads);
142 static void Destroy(UdpTransport* module);
udp_transport_impl.cc 82 // Creates an UdpTransport using the definition of SocketFactory above,
85 UdpTransport* UdpTransport::Create(const int32_t id,
93 // Deletes the UdpTransport and decrements the refcount of the
96 void UdpTransport::Destroy(UdpTransport* module)
183 UdpTransport::ErrorCode UdpTransportImpl::LastError() const
374 UdpTransport::kIpAddressVersion6Length :
375 UdpTransport::kIpAddressVersion4Length);
380 UdpTransport::kIpAddressVersion6Length
    [all...]
udp_transport_impl.h 26 class UdpTransportImpl : public UdpTransport
41 // Constructor, only called by UdpTransport::Create and tests.
49 // UdpTransport functions
124 // UdpTransport functions continue.
  /system/core/fastboot/
udp.cpp 102 class UdpTransport : public Transport {
105 static std::unique_ptr<UdpTransport> NewTransport(std::unique_ptr<Socket> socket,
107 ~UdpTransport() override = default;
114 explicit UdpTransport(std::unique_ptr<Socket> socket) : socket_(std::move(socket)) {}
138 DISALLOW_COPY_AND_ASSIGN(UdpTransport);
141 std::unique_ptr<UdpTransport> UdpTransport::NewTransport(std::unique_ptr<Socket> socket,
143 std::unique_ptr<UdpTransport> transport(new UdpTransport(std::move(socket)));
152 bool UdpTransport::InitializeProtocol(std::string* error)
    [all...]

Completed in 814 milliseconds