Home
last modified time | relevance | path

Searched refs:RouteEndpoint (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/rtc_base/
Dnetwork_route.h28 class RouteEndpoint {
30 RouteEndpoint() {} // Used by tests. in RouteEndpoint() function
31 RouteEndpoint(AdapterType adapter_type, in RouteEndpoint() function
40 RouteEndpoint(const RouteEndpoint&) = default;
41 RouteEndpoint& operator=(const RouteEndpoint&) = default;
44 static RouteEndpoint CreateWithNetworkId(uint16_t network_id) { in CreateWithNetworkId()
45 return RouteEndpoint(ADAPTER_TYPE_UNKNOWN, in CreateWithNetworkId()
49 RouteEndpoint CreateWithTurn(bool uses_turn) const { in CreateWithTurn()
50 return RouteEndpoint(adapter_type_, adapter_id_, network_id_, uses_turn); in CreateWithTurn()
58 bool operator==(const RouteEndpoint& other) const;
[all …]
Dnetwork_route.cc15 bool RouteEndpoint::operator==(const RouteEndpoint& other) const { in operator ==()
/external/webrtc/pc/
Drtp_transport_unittest.cc158 network_route.local = rtc::RouteEndpoint::CreateWithNetworkId(kLocalNetId); in TEST()
159 network_route.remote = rtc::RouteEndpoint::CreateWithNetworkId(kRemoteNetId); in TEST()
187 network_route.local = rtc::RouteEndpoint::CreateWithNetworkId(kLocalNetId); in TEST()
188 network_route.remote = rtc::RouteEndpoint::CreateWithNetworkId(kRemoteNetId); in TEST()
Dcomposite_rtp_transport_test.cc232 route.local = rtc::RouteEndpoint::CreateWithNetworkId(7); in TEST_F()
238 route.local = rtc::RouteEndpoint::CreateWithNetworkId(8); in TEST_F()
252 route.local = rtc::RouteEndpoint::CreateWithNetworkId(7); in TEST_F()
Dchannel_unittest.cc854 rtc::RouteEndpoint::CreateWithNetworkId(kLocalNetId); in TestNetworkRouteChanges()
856 rtc::RouteEndpoint::CreateWithNetworkId(kRemoteNetId); in TestNetworkRouteChanges()
/external/webrtc/test/scenario/
Dnetwork_node.cc114 route.local = rtc::RouteEndpoint::CreateWithNetworkId(static_cast<uint16_t>( in Connect()
116 route.remote = rtc::RouteEndpoint::CreateWithNetworkId(static_cast<uint16_t>( in Connect()
/external/webrtc/video/
Dvideo_send_stream_tests.cc1782 new_route.local = rtc::RouteEndpoint::CreateWithNetworkId(10); in TEST_F()
1783 new_route.remote = rtc::RouteEndpoint::CreateWithNetworkId(20); in TEST_F()
1809 new_route.local = rtc::RouteEndpoint::CreateWithNetworkId( in TEST_F()
1887 route.local = rtc::RouteEndpoint::CreateWithNetworkId(10); in TEST_F()
1888 route.remote = rtc::RouteEndpoint::CreateWithNetworkId(20); in TEST_F()
/external/webrtc/p2p/base/
Dp2p_transport_channel.cc88 rtc::RouteEndpoint CreateRouteEndpointFromCandidate( in CreateRouteEndpointFromCandidate()
102 return rtc::RouteEndpoint(adapter_type, adapter_id, candidate.network_id(), in CreateRouteEndpointFromCandidate()