Searched refs:networks (Results 1 - 25 of 49) sorted by relevance

12

/external/chromium/chrome/browser/resources/chromeos/
H A Dchoose_mobile_network.js14 showNetworks_: function(networks) {
15 this.networks_ = networks;
17 if (networks.length == 0) {
19 $('no-mobile-networks').hidden = false;
25 for (var i in networks) {
31 $('label' + i).textContent = networks[i].operatorName;
32 if (networks[i].status == 'current') {
35 } else if (networks[i].status == 'forbidden') {
82 ChooseNetwork.showNetworks = function(networks) {
83 ChooseNetwork.getInstance().showNetworks_(networks);
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dchoose_mobile_network.js14 showNetworks_: function(networks) {
15 this.networks_ = networks;
17 if (networks.length == 0) {
20 $('no-mobile-networks').hidden = false;
26 for (var i in networks) {
32 $('label' + i).textContent = networks[i].operatorName;
33 if (networks[i].status == 'current') {
36 } else if (networks[i].status == 'forbidden') {
47 $('no-mobile-networks').hidden = true;
61 $('no-mobile-networks')
[all...]
/external/chromium_org/jingle/glue/
H A Dfake_network_manager.cc42 void FakeNetworkManager::GetNetworks(NetworkList* networks) const {
43 networks->clear();
44 networks->push_back(network_.get());
H A Dfake_network_manager.h28 virtual void GetNetworks(NetworkList* networks) const OVERRIDE;
/external/chromium_org/content/renderer/p2p/
H A Dipc_network_manager.cc53 std::vector<talk_base::Network*> networks; local
63 networks.push_back(network);
72 networks.push_back(network);
78 MergeNetworkList(networks, &changed);
H A Dsocket_dispatcher.cc123 const net::NetworkInterfaceList& networks) {
125 &NetworkListObserver::OnNetworkListChanged, networks);
122 OnNetworkListChanged( const net::NetworkInterfaceList& networks) argument
H A Dsocket_dispatcher.h95 void OnNetworkListChanged(const net::NetworkInterfaceList& networks);
/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.h49 // Updates and returns the current list of networks available on this machine.
52 // Does not include ignored networks.
53 bool GetNetworks(std::vector<Network*>* networks);
55 // Logs the available networks.
64 std::vector<Network*>* networks);
69 // Fills the supplied list with all usable networks. Overrideable.
71 std::vector<Network*>* networks);
/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
82 networks.push_back(network);
87 MergeNetworkList(networks, &changed);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dfakenetwork.h102 std::vector<Network*> networks;
117 networks.push_back(net.release());
120 MergeNetworkList(networks, &changed);
H A Dnetwork.h52 // networks.
69 // is emitted wheneven list of networks changes.
73 // Returns the current list of networks available on this machine.
77 // include ignored networks.
78 virtual void GetNetworks(NetworkList* networks) const = 0;
80 // Dumps a list of networks available to LS_INFO.
90 virtual void GetNetworks(std::vector<Network*>* networks) const;
96 // Updates |networks_| with the networks listed in |list|. If
113 // of networks using OS APIs.
123 // Logs the available networks
[all...]
/external/chromium_org/chromeos/network/
H A Dclient_cert_resolver.cc131 // Searches for matches between |networks| and |certs| and writes matches to
135 std::vector<NetworkAndCertPattern>* networks,
173 networks->begin();
174 it != networks->end(); ++it) {
302 // Configure only networks that were not configured before.
304 // We'll drop networks from |resolved_networks_|, which are not known anymore.
308 FavoriteStateList networks; local
309 network_state_handler_->GetFavoriteList(&networks);
312 for (FavoriteStateList::const_iterator it = networks.begin();
313 it != networks
134 FindCertificateMatches(const net::CertificateList& certs, std::vector<NetworkAndCertPattern>* networks, NetworkCertMatches* matches) argument
348 FavoriteStateList networks; local
353 ResolveNetworks(const FavoriteStateList& networks) argument
[all...]
H A Dnetwork_cert_migrator.cc46 // Checks which of the given |networks| has one of the deprecated
61 void Run(const NetworkStateHandler::NetworkStateList& networks) { argument
65 networks.begin(); it != networks.end(); ++it) {
264 NetworkStateHandler::NetworkStateList networks; local
265 network_state_handler_->GetNetworkList(&networks);
266 helper->Run(networks);
272 // Maybe there are networks referring to certs (by NSS nickname) that were not
H A Dclient_cert_resolver.h30 // Observes the known networks. If a network is configured with a client
63 // Check which networks of |networks| are configured with a client certificate
65 // networks for which a matching cert is found (see ConfigureCertificates).
66 void ResolveNetworks(const FavoriteStateList& networks);
68 // |matches| contains networks for which a matching certificate was found.
69 // Configures these networks.
72 // The set of networks that were checked/resolved in previous passes. These
73 // networks are skipped in the NetworkListChanged notification.
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dconnectivitychecker.cc214 std::vector<talk_base::Network*> networks; local
215 network_manager_->GetNetworks(&networks);
216 if (networks.empty()) {
217 LOG(LS_ERROR) << "No networks while registering http start.";
221 NicMap::iterator i = nics_.find(NicId(networks[0]->ip(), proxy_info.address));
321 std::vector<talk_base::Network*> networks; local
322 network_manager_->GetNetworks(&networks);
323 if (networks.empty()) {
324 LOG(LS_ERROR) << "Machine has no networks; nothing to do";
359 std::vector<talk_base::Network*> networks; local
415 std::vector<talk_base::Network*> networks; local
494 std::vector<talk_base::Network*> networks; local
[all...]
/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_org/chrome/browser/local_discovery/
H A Dprivet_traffic_detector.cc26 net::NetworkInterfaceList networks; local
27 if (!GetNetworkList(&networks))
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]);
103 void PrivetTrafficDetector::Restart(const net::NetworkInterfaceList& networks) { argument
105 networks_ = networks;
H A Dprivet_traffic_detector.h48 void Restart(const net::NetworkInterfaceList& networks);
/external/chromium_org/chrome/browser/extensions/api/networking_private/
H A Dnetworking_private_event_router_chromeos.cc132 NetworkStateHandler::NetworkStateList networks; local
133 NetworkHandler::Get()->network_state_handler()->GetNetworkList(&networks);
146 networks.begin();
147 iter != networks.end();
/external/chromium_org/net/base/
H A Dnet_util_posix.cc66 bool GetNetworkList(NetworkInterfaceList* networks) { argument
88 networks->push_back(
152 networks->push_back(
/external/chromium_org/components/wifi/
H A Dwifi_service_win.cc229 // |NetworkListChanged| event with new list of visible networks.
243 // Return |iterator| to network identified by |network_guid| in |networks|
245 NetworkList::iterator FindNetwork(NetworkList& networks,
252 // Sort networks, so connected/connecting is up front, then by type:
254 static void SortNetworks(NetworkList* networks);
320 // Get the list of visible wireless networks.
367 // Notify |network_list_changed_observer_| that list of visible networks has
368 // changed to |networks|.
369 void NotifyNetworkListChanged(const NetworkList& networks);
562 NetworkList networks; local
682 NetworkList networks; local
737 FindNetwork( NetworkList& networks, const std::string& network_guid) argument
765 SortNetworks(NetworkList* networks) argument
1561 NotifyNetworkListChanged(const NetworkList& networks) argument
[all...]
H A Dfake_wifi_service.cc285 // Sort networks, so connected/connecting is up front, then by type:
290 void NotifyNetworkListChanged(const NetworkList& networks) { argument
292 for (WiFiService::NetworkList::const_iterator it = networks.begin();
293 it != networks.end();
/external/tcpdump/
H A Dprint-egp.c144 int gateways, distances, networks; local
193 networks = *cp++;
194 while (--networks >= 0) {

Completed in 759 milliseconds

12