OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:networks
(Results
1 - 8
of
8
) 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));
/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
;
/external/tcpdump/
print-egp.c
144
int gateways, distances,
networks
;
local
193
networks
= *cp++;
194
while (--
networks
>= 0) {
/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);
/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
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkController.java
707
List<WifiConfiguration>
networks
= mWifiManager.getConfiguredNetworks();
local
708
for (WifiConfiguration net :
networks
) {
[
all
...]
Completed in 335 milliseconds