Home | History | Annotate | Download | only in client

Lines Matching refs:network

313     std::vector<rtc::Network*>* networks) {
317 // If the network permission state is BLOCKED, we just act as if the flag has
333 [this](rtc::Network* network) {
335 network->type();
340 // For each network, see if we have a sequence that covers it already. If not,
344 std::vector<rtc::Network*> networks;
404 std::vector<rtc::Network*> networks;
407 // Remove the network from the allocation sequence if it is not in
410 std::find(networks.begin(), networks.end(), sequence->network()) ==
422 rtc::Network* network,
428 sequences_[i]->DisableEquivalentPhases(network, config, flags);
713 rtc::Network* network,
717 network_(network),
718 ip_(network->GetBestIP()),
748 // Stop the allocation sequence if its network is gone.
757 void AllocationSequence::DisableEquivalentPhases(rtc::Network* network,
760 // If the network of this allocation sequence has ever gone away,
761 // it won't be equivalent to the new network.
765 if (!((network == network_) && (ip_ == network->GetBestIP()))) {
766 // Different network setup; nothing is equivalent.