Searched refs:networks_ (Results 1 - 6 of 6) sorted by relevance

/system/connectivity/shill/wimax/
H A Dwimax.h74 const std::set<RpcIdentifier>& networks() const { return networks_; }
125 std::set<RpcIdentifier> networks_; member in class:shill::WiMax
H A Dwimax_unittest.cc112 device_->networks_.insert("path");
118 EXPECT_TRUE(device_->networks_.empty());
148 device_->networks_.insert("foo");
154 EXPECT_EQ(2, device_->networks_.size());
155 EXPECT_TRUE(ContainsKey(device_->networks_, "bar"));
156 EXPECT_TRUE(ContainsKey(device_->networks_, "zoo"));
259 EXPECT_EQ(1, device_->networks_.size());
260 EXPECT_TRUE(ContainsKey(device_->networks_, "path"));
H A Dwimax_provider.cc127 // Removes dead networks from |networks_|.
128 for (auto it = networks_.begin(); it != networks_.end(); ) {
134 it = networks_.erase(it);
137 // Retrieves network info into |networks_| for the live networks.
141 // Stops dead and starts live services based on the current |networks_|.
397 if (ContainsKey(networks_, path)) {
415 networks_[path] = info;
457 SLOG(this, 2) << __func__ << "(" << networks_.size() << ")";
458 for (const auto& nit : networks_) {
[all...]
H A Dwimax_provider_unittest.cc229 EXPECT_EQ(1, provider_.networks_.size());
230 EXPECT_TRUE(ContainsKey(provider_.networks_, network_path));
231 EXPECT_EQ(kName, provider_.networks_[network_path].name);
232 EXPECT_EQ(kNetworkId, provider_.networks_[network_path].id);
234 EXPECT_EQ(1, provider_.networks_.size());
280 provider_.networks_[GetTestNetworkPath(kIdentifier)] = info;
331 provider_.networks_[GetTestNetworkPath(777)].id = "01234567";
332 provider_.networks_[GetTestNetworkPath(101)].id = "12345678";
380 device->networks_.insert(GetTestNetworkPath(101));
386 provider_.networks_["/or
[all...]
H A Dwimax.cc118 networks_.clear();
277 networks_.clear();
278 networks_.insert(networks.begin(), networks.end());
H A Dwimax_provider.h116 // Retrieves network info for a network at RPC |path| into |networks_| if it's
172 std::map<RpcIdentifier, NetworkInfo> networks_; member in class:shill::WiMaxProvider

Completed in 90 milliseconds