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

12

/external/chromium_org/chrome/browser/local_discovery/wifi/
H A Dbootstrapping_network_switcher.cc44 const NetworkPropertiesList& networks) {
45 for (NetworkPropertiesList::const_iterator i = networks.begin();
46 i != networks.end();
43 OnGotNetworkList( const NetworkPropertiesList& networks) argument
H A Dmock_wifi_manager.cc23 const std::vector<NetworkProperties>& networks) {
24 ssid_list_callback_.Run(networks);
22 CallSSIDListCallback( const std::vector<NetworkProperties>& networks) argument
/external/chromium_org/content/renderer/p2p/
H A Dipc_network_manager.cc78 std::vector<talk_base::Network*> networks; local
91 networks.push_back(network);
102 networks.push_back(network);
125 networks.push_back(network_v4);
132 networks.push_back(network_v6);
136 MergeNetworkList(networks, &changed);
H A Dsocket_dispatcher.cc124 const net::NetworkInterfaceList& networks) {
126 &NetworkListObserver::OnNetworkListChanged, networks);
123 OnNetworkListChanged( const net::NetworkInterfaceList& networks) argument
/external/chromium_org/net/base/
H A Dnet_util_posix.cc117 bool GetNetworkList(NetworkInterfaceList* networks, int policy) { argument
142 networks->push_back(
265 networks->push_back(network_infos[i].interface);
H A Dnet_util_win.cc107 bool GetNetworkList(NetworkInterfaceList* networks, int policy) { argument
113 // First get number of networks.
116 // There are 0 networks.
202 networks->push_back(
213 networks->push_back(*(ipv6_address.get()));
/external/chromium_org/remoting/client/plugin/
H A Dpepper_network_manager.cc66 // Convert the networks to talk_base::Network.
67 std::vector<talk_base::Network*> networks; local
90 networks.push_back(network);
95 MergeNetworkList(networks, &changed);
/external/chromium_org/chrome/browser/extensions/api/networking_private/
H A Dnetworking_private_event_router_chromeos.cc145 NetworkStateHandler::NetworkStateList networks; local
147 &networks);
160 networks.begin();
161 iter != networks.end();
H A Dnetworking_private_service_client.cc312 base::ListValue* networks = new base::ListValue(); local
319 networks,
324 base::Owned(networks)));
524 const base::ListValue* networks) {
528 service_callbacks->get_visible_networks_callback.Run(*networks);
522 AfterGetVisibleNetworks( ServiceCallbacksID callback_id, const base::ListValue* networks) argument
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivet_traffic_detector.cc26 net::NetworkInterfaceList networks; local
27 if (!GetNetworkList(&networks, net::INCLUDE_HOST_SCOPE_VIRTUAL_INTERFACES))
31 for (size_t i = 0; i < networks.size(); ++i) {
33 net::GetAddressFamily(networks[i].address);
35 networks[i].network_prefix >= 24) {
36 ip4_networks.push_back(networks[i]);
106 void PrivetTrafficDetector::Restart(const net::NetworkInterfaceList& networks) { argument
108 networks_ = networks;
/external/chromium_org/components/wifi/
H A Dfake_wifi_service.cc206 // Sort networks, so connected/connecting is up front, then by type:
211 void FakeWiFiService::NotifyNetworkListChanged(const NetworkList& networks) { argument
213 for (NetworkList::const_iterator it = networks.begin(); it != networks.end();
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dnetwork_unittest.cc77 NetworkManager::NetworkList* networks) {
78 network_manager.ConvertIfAddrs(interfaces, include_ignored, networks);
198 // Add ipv4_network1 to the list of networks.
254 // Sets up some test IPv6 networks and appends them to list.
255 // Four networks are added - public and link local, for two interfaces.
269 // Public networks:
306 // Tests that when two network lists that describe the same set of networks are
318 // Second list that describes the same networks but with new objects.
333 // Doublecheck that the new networks aren't in the list.
406 // There should still be four networks
74 CallConvertIfAddrs(const BasicNetworkManager& network_manager, struct ifaddrs* interfaces, bool include_ignored, NetworkManager::NetworkList* networks) argument
[all...]
H A Dnat_unittest.cc216 std::vector<Network*> networks; local
217 network_manager.GetNetworks(&networks);
218 if (networks.empty()) {
227 for (std::vector<Network*>::iterator it = networks.begin();
228 it != networks.end(); ++it) {
/external/chromium_org/third_party/webrtc/base/
H A Dnetwork_unittest.cc60 NetworkManager::NetworkList* networks) {
61 network_manager.ConvertIfAddrs(interfaces, include_ignored, networks);
181 // Add ipv4_network1 to the list of networks.
237 // Sets up some test IPv6 networks and appends them to list.
238 // Four networks are added - public and link local, for two interfaces.
252 // Public networks:
289 // Tests that when two network lists that describe the same set of networks are
301 // Second list that describes the same networks but with new objects.
316 // Doublecheck that the new networks aren't in the list.
389 // There should still be four networks
57 CallConvertIfAddrs(const BasicNetworkManager& network_manager, struct ifaddrs* interfaces, bool include_ignored, NetworkManager::NetworkList* networks) argument
[all...]
H A Dnat_unittest.cc199 std::vector<Network*> networks; local
200 network_manager.GetNetworks(&networks);
201 if (networks.empty()) {
210 for (std::vector<Network*>::iterator it = networks.begin();
211 it != networks.end(); ++it) {
/external/chromium_org/chromeos/network/
H A Dnetwork_cert_migrator.cc47 // Checks which of the given |networks| has one of the deprecated
62 void Run(const NetworkStateHandler::NetworkStateList& networks) { argument
66 networks.begin(); it != networks.end(); ++it) {
265 NetworkStateHandler::NetworkStateList networks; local
266 network_state_handler_->GetVisibleNetworkList(&networks);
267 helper->Run(networks);
273 // Maybe there are networks referring to certs (by NSS nickname) that were not
H A Dclient_cert_resolver.cc134 // Searches for matches between |networks| and |certs| and writes matches to
138 std::vector<NetworkAndCertPattern>* networks,
176 networks->begin();
177 it != networks->end(); ++it) {
305 // Configure only networks that were not configured before.
307 // We'll drop networks from |resolved_networks_|, which are not known anymore.
311 NetworkStateHandler::NetworkStateList networks; local
317 &networks); local
321 networks.begin(); it != networks
137 FindCertificateMatches(const net::CertificateList& certs, std::vector<NetworkAndCertPattern>* networks, NetworkCertMatches* matches) argument
346 &networks); local
362 NetworkStateHandler::NetworkStateList networks; local
367 ResolveNetworks( const NetworkStateHandler::NetworkStateList& networks) argument
[all...]
H A Dnetwork_state_handler_unittest.cc64 NetworkStateHandler::NetworkStateList networks; variable
69 &networks); variable
70 network_count_ = networks.size();
294 // Get all networks.
295 NetworkStateHandler::NetworkStateList networks; local
300 &networks); local
301 EXPECT_EQ(kNumShillManagerClientStubImplServices + 1, networks.size());
307 &networks); local
308 EXPECT_EQ(2u, networks.size());
309 // Get all wifi networks
314 &networks); local
321 &networks); local
330 &networks); local
373 NetworkStateHandler::NetworkStateList networks; local
[all...]
H A Dnetwork_connection_handler.cc255 // networks. These states will not be affected by a recent configuration.
262 // For existing networks, perform some immediate consistency checks.
304 // Connect immediately to 'connectable' networks.
817 "Disconnecting unmanaged and shared networks if any exist.");
819 // Get the list of unmanaged & shared networks that are connected or
821 NetworkStateHandler::NetworkStateList networks; local
823 NetworkTypePattern::Wireless(), &networks); local
825 networks.begin();
826 it != networks.end();
830 break; // Connected and connecting networks ar
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dconnectivitychecker.cc210 std::vector<talk_base::Network*> networks; local
211 network_manager_->GetNetworks(&networks);
212 if (networks.empty()) {
213 LOG(LS_ERROR) << "No networks while registering http start.";
217 NicMap::iterator i = nics_.find(NicId(networks[0]->ip(), proxy_info.address));
317 std::vector<talk_base::Network*> networks; local
318 network_manager_->GetNetworks(&networks);
319 if (networks.empty()) {
320 LOG(LS_ERROR) << "Machine has no networks; nothing to do";
355 std::vector<talk_base::Network*> networks; local
411 std::vector<talk_base::Network*> networks; local
490 std::vector<talk_base::Network*> networks; local
[all...]
/external/tcpdump/
H A Dprint-egp.c144 int gateways, distances, networks; local
193 networks = *cp++;
194 while (--networks >= 0) {
/external/chromium_org/ash/system/chromeos/network/
H A Dnetwork_state_list_detailed_view.cc462 const NetworkStateHandler::NetworkStateList& networks) {
465 networks.begin(); iter != networks.end(); ++iter) {
480 // First, update state for all networks
602 // Highlighted networks
657 // Un-highlighted networks
667 // No networks or other messages (fallback)
461 UpdateNetworks( const NetworkStateHandler::NetworkStateList& networks) argument
H A Dnetwork_icon.cc73 // Updates |strength_index_| for wireless networks. Returns true if changed.
76 // Updates the local state for cellular networks. Returns true if changed.
79 // Updates the portal state for wireless networks. Returns true if changed.
181 // Images for strength bars for wired networks.
184 // Imagaes for strength arcs for wireless networks.
689 // For networks that are always in roaming don't show roaming badge.
948 NetworkStateHandler::NetworkStateList networks; local
950 &networks);
952 for (NetworkStateHandler::NetworkStateList::iterator iter = networks.begin();
953 iter != networks
[all...]
/external/chromium_org/chrome/browser/extensions/api/dial/
H A Ddial_service.cc115 const base::Callback<void(const NetworkInterfaceList& networks)>& cb) {
456 void DialServiceImpl::SendNetworkList(const NetworkInterfaceList& networks) { argument
463 // there may be duplicates in |networks|, so address family + interface index
466 for (NetworkInterfaceList::const_iterator iter = networks.begin();
467 iter != networks.end(); ++iter) {
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dp2ptransportchannel.cc927 // Get a list of the networks that we are using.
928 std::set<talk_base::Network*> networks; local
930 networks.insert(connections_[i]->port()->Network());
962 // other networks because they may not be using the same resources and they
965 for (network = networks.begin(); network != networks.end(); ++network) {

Completed in 924 milliseconds

12