Home
last modified time | relevance | path

Searched refs:ReadyPorts (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/p2p/client/
Dbasic_port_allocator_unittest.cc112 auto ready_ports = allocator_session->ReadyPorts(); in CheckStunKeepaliveIntervalOfAllReadyPorts()
406 auto ready_ports = ses->ReadyPorts(); in OnPortReady()
412 auto ready_ports = ses->ReadyPorts(); in OnPortsPruned()
595 EXPECT_EQ(3U, session_->ReadyPorts().size()); in TestIPv6TurnPortPrunesIPv4TurnPort()
633 EXPECT_EQ(2U, session_->ReadyPorts().size()); in TestTurnPortPrunesWithUdpAndTcpPorts()
689 EXPECT_EQ(10U, session_->ReadyPorts().size()); in TestEachInterfaceHasItsOwnTurnPorts()
2093 auto ready_ports = session_->ReadyPorts(); in TEST_F()
2124 size_t initial_ports_size = peeked_session->ReadyPorts().size(); in TEST_F()
2132 auto ports = session_->ReadyPorts(); in TEST_F()
Dbasic_port_allocator.h140 std::vector<PortInterface*> ReadyPorts() const override;
Dbasic_port_allocator.cc488 auto ports = ReadyPorts(); in GetCandidateStatsFromReadyPorts()
502 auto ports = ReadyPorts(); in SetStunKeepaliveIntervalForReadyPorts()
515 std::vector<PortInterface*> BasicPortAllocatorSession::ReadyPorts() const { in ReadyPorts() function in cricket::BasicPortAllocatorSession
/external/webrtc/p2p/base/
Dfake_port_allocator.h139 std::vector<PortInterface*> ReadyPorts() const override { in ReadyPorts() function
Dport_allocator.h257 virtual std::vector<PortInterface*> ReadyPorts() const = 0;
Dp2p_transport_channel_unittest.cc2008 EXPECT_TRUE(pooled_session_1->ReadyPorts().empty()); in TEST_F()
2010 EXPECT_TRUE(pooled_session_2->ReadyPorts().empty()); in TEST_F()
2019 auto pooled_ports_1 = pooled_session_1->ReadyPorts(); in TEST_F()
2020 auto pooled_ports_2 = pooled_session_2->ReadyPorts(); in TEST_F()
2062 auto pooled_ports_1 = pooled_session_1->ReadyPorts(); in TEST_F()
2063 auto pooled_ports_2 = pooled_session_2->ReadyPorts(); in TEST_F()
Dp2p_transport_channel.cc850 for (PortInterface* port : allocator_sessions_.back()->ReadyPorts()) { in MaybeStartGathering()