Searched defs:networks (Results 1 - 7 of 7) sorted by relevance

/external/chromium/net/base/
H A Dnet_util_posix.cc59 bool GetNetworkList(NetworkInterfaceList* networks) { argument
77 networks->push_back(NetworkInterface(name, address.address()));
H A Dnet_util_win.cc78 bool GetNetworkList(NetworkInterfaceList* networks) { argument
85 // First get number of networks.
88 // There are 0 networks.
117 networks->push_back(NetworkInterface(name, endpoint.address()));
/external/chromium/chrome/browser/chromeos/
H A Dsms_observer.cc37 const CellularNetworkVector& networks = library->cellular_networks(); local
38 // Remove monitors for networks that are not in the list anymore.
42 for (CellularNetworkVector::const_iterator it_network = networks.begin();
43 it_network != networks.end(); ++it_network) {
58 // Add monitors for new networks.
59 for (CellularNetworkVector::const_iterator it_network = networks.begin();
60 it_network != networks.end(); ++it_network) {
/external/chromium/third_party/libjingle/source/talk/base/
H A Dnetwork.cc170 LOG(LS_INFO) << "NetworkManager detected " << list.size() << " networks:";
236 std::vector<Network*>* networks) {
267 networks->push_back(network.release());
287 std::vector<Network*>* networks) {
292 // This just means there's zero networks, which is not an error.
327 networks->push_back(network.release());
337 // Ignore local networks (lo, lo0, etc)
353 // Ignore any networks with a 0.x.y.z IP
235 CreateNetworks(bool include_ignored, std::vector<Network*>* networks) argument
286 CreateNetworks(bool include_ignored, std::vector<Network*>* networks) argument
/external/tcpdump/
H A Dprint-egp.c144 int gateways, distances, networks; local
193 networks = *cp++;
194 while (--networks >= 0) {
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dp2ptransportchannel.cc543 // Get a list of the networks that we are using.
544 std::set<talk_base::Network*> networks; local
546 networks.insert(connections_[i]->port()->network());
567 // other networks because they may not be using the same resources and they
570 for (network = networks.begin(); network != networks.end(); ++network) {
/external/chromium/third_party/libjingle/source/talk/p2p/client/
H A Dbasicportallocator.cc338 std::vector<talk_base::Network*> networks; local
340 if (!allocator_->network_manager()->GetNetworks(&networks)) {
341 LOG(LS_ERROR) << "Failed to enumerate networks";
342 } else if (networks.empty()) {
343 LOG(LS_WARNING) << "Machine has no networks; no ports will be allocated";
345 for (uint32 i = 0; i < networks.size(); ++i) {
364 DisableEquivalentPhases(networks[i], config, &sequence_flags);
372 new AllocationSequence(this, networks[i], config, sequence_flags);

Completed in 1785 milliseconds