/external/webrtc/webrtc/p2p/base/ |
faketransportcontroller.h | 124 if (gathering_state_ == kIceGatheringNew) { 125 gathering_state_ = kIceGatheringGathering; 131 return gathering_state_; 179 if (gathering_state_ != kIceGatheringComplete) { 180 gathering_state_ = kIceGatheringComplete; 339 IceGatheringState gathering_state_ = kIceGatheringNew; member in class:cricket::FakeTransportChannel
|
transportcontroller_unittest.cc | 166 gathering_state_ = state; 186 IceGatheringState gathering_state_ = cricket::kIceGatheringNew; member in class:TransportControllerTest 337 EXPECT_EQ_WAIT(cricket::kIceGatheringGathering, gathering_state_, kTimeout); 585 EXPECT_EQ_WAIT(cricket::kIceGatheringGathering, gathering_state_, kTimeout); 599 EXPECT_EQ_WAIT(cricket::kIceGatheringGathering, gathering_state_, kTimeout); 606 EXPECT_EQ_WAIT(cricket::kIceGatheringNew, gathering_state_, kTimeout); 614 EXPECT_EQ_WAIT(cricket::kIceGatheringGathering, gathering_state_, kTimeout); 619 EXPECT_EQ_WAIT(cricket::kIceGatheringComplete, gathering_state_, kTimeout); 636 EXPECT_EQ_WAIT(cricket::kIceGatheringGathering, gathering_state_, kTimeout); 644 EXPECT_EQ_WAIT(cricket::kIceGatheringComplete, gathering_state_, kTimeout) [all...] |
p2ptransportchannel.h | 88 return gathering_state_; 290 IceGatheringState gathering_state_; member in class:cricket::P2PTransportChannel
|
p2ptransportchannel.cc | 221 gathering_state_(kIceGatheringNew), 419 if (gathering_state_ != kIceGatheringGathering) { 420 gathering_state_ = kIceGatheringGathering; 485 gathering_state_ = kIceGatheringComplete; [all...] |
transportcontroller.h | 206 IceGatheringState gathering_state_ = kIceGatheringNew; member in class:cricket::TransportController
|
transportcontroller.cc | 601 if (gathering_state_ != new_gathering_state) { 602 gathering_state_ = new_gathering_state;
|