HomeSort by relevance Sort by last modified time
    Searched refs:networks (Results 1 - 19 of 19) sorted by null

  /external/chromium/chrome/browser/chromeos/
sms_observer.cc 37 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) {
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiConnectionTest.java 62 private List<WifiConfiguration> networks = new ArrayList<WifiConfiguration>(); field in class:WifiConnectionTest
80 networks = mAct.loadNetworkConfigurations();
114 log("number of access points: " + networks.size());
115 for (WifiConfiguration config : networks) {
165 for (int i = 0; i < networks.size(); i++) {
166 String ssid = networks.get(i).SSID;
168 connectToWifi(networks.get(i));
  /external/chromium/third_party/libjingle/source/talk/base/
network.h 49 // 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);
network.cc 170 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
  /external/chromium/net/base/
net_util_posix.cc 59 bool GetNetworkList(NetworkInterfaceList* networks) {
77 networks->push_back(NetworkInterface(name, address.address()));
net_util_win.cc 78 bool GetNetworkList(NetworkInterfaceList* networks) {
85 // First get number of networks.
88 // There are 0 networks.
117 networks->push_back(NetworkInterface(name, endpoint.address()));
net_util.h 493 bool GetNetworkList(NetworkInterfaceList* networks);
  /external/tcpdump/
print-egp.c 144 int gateways, distances, networks; local
193 networks = *cp++;
194 while (--networks >= 0) {
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
AccessPointParserHelper.java 77 List<WifiConfiguration> networks = new ArrayList<WifiConfiguration>(); field in class:AccessPointParserHelper
185 networks.add(config);
362 return networks;
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiManagerTest.java 164 private int findConfiguredNetworks(String SSID, List<WifiConfiguration> networks) {
165 for (final WifiConfiguration w : networks) {
167 return networks.indexOf(w);
314 * 6.configured Networks
369 // store the list of enabled networks, so they can be re-enabled after test completes
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
p2ptransportchannel.cc 543 // 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) {
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
basicportallocator.cc 338 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);
  /external/chromium/chrome/browser/resources/options/chromeos/
internet_options_page.css 28 .networks {
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfigStore.java 56 * wifi networks. The API is not thread safe is being
96 * - Maintain a list of configured networks for quick access
105 /* configured networks with network id as the key */
111 * the configuration file at start and can thus change for networks.
112 * We store the IP configuration for networks along with a unique id
119 /* Tracks the highest priority of configured networks */
140 * Initialize context, fetch the list of configured networks
141 * and enable all stored networks in supplicant.
144 if (DBG) log("Loading config and enabling all networks");
151 * Fetch the list of currently configured networks
155 List<WifiConfiguration> networks = new ArrayList<WifiConfiguration>(); local
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
network_library.cc 39 // network_map_: canonical map<path,Network*> for all visible networks.
50 // network_unique_id_map_: map<unique_id,Network*> for visible networks.
51 // remembered_network_map_: a canonical map<path,Network*> for all networks
61 // the "Services" message which list all visible networks. The handler
    [all...]
  /frameworks/base/services/java/com/android/server/net/
NetworkPolicyManagerService.java 680 * interfaces. Used to apply {@link NetworkPolicy} to matching networks.
705 // TODO: reset any policy-disabled networks when any policy is removed
771 // first, derive identity for all connected networks, which can be used
773 final HashMap<NetworkIdentity, String> networks = Maps.newHashMap();
779 networks.put(ident, iface)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkController.java 803 List<WifiConfiguration> networks = mWifiManager.getConfiguredNetworks(); local
    [all...]
  /external/iproute2/doc/
ip-tunnels.tex 414 using methods typical for another NBMA networks f.e.\ to start user
ip-cref.tex     [all...]

Completed in 838 milliseconds