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

/system/connectivity/shill/dbus/
H A Dchromeos_wimax_device_proxy.h71 brillo::dbus_utils::Property<std::vector<dbus::ObjectPath>> networks; member in class:shill::ChromeosWiMaxDeviceProxy::PropertySet
82 void NetworksChanged(const std::vector<dbus::ObjectPath>& networks);
H A Dchromeos_wimax_device_proxy.cc57 RegisterProperty(kPropertyNetworks, &networks);
200 KeyValueStore::ConvertPathsToRpcIdentifiers(properties_->networks.value(),
222 const vector<dbus::ObjectPath>& networks) {
224 << "(" << networks.size() << ")";
229 KeyValueStore::ConvertPathsToRpcIdentifiers(networks, &rpc_networks);
221 NetworksChanged( const vector<dbus::ObjectPath>& networks) argument
H A Dchromeos_manager_dbus_adaptor.cc404 brillo::VariantDictionary* networks) {
412 networks->insert(std::make_pair(network.first, brillo::Any(value)));
402 GetNetworksForGeolocation( brillo::ErrorPtr* , brillo::VariantDictionary* networks) argument
/system/connectivity/shill/wimax/
H A Dwimax.h74 const std::set<RpcIdentifier>& networks() const { return networks_; } function in class:shill::WiMax
102 void OnNetworksChanged(const RpcIdentifiers& networks);
H A Dwimax_unittest.cc149 RpcIdentifiers networks; local
150 networks.push_back("bar");
151 networks.push_back("zoo");
152 networks.push_back("bar");
153 device_->OnNetworksChanged(networks);
249 RpcIdentifiers networks(1, "path");
250 EXPECT_CALL(*proxy_, Networks(_)).WillOnce(Return(networks));
H A Dwimax.cc236 // The networks are updated when the NetworksChanged signal is received.
260 // Updates the live networks based on the current WiMaxManager.Device
261 // networks. The RPC device will signal when the network set changes.
275 void WiMax::OnNetworksChanged(const RpcIdentifiers& networks) { argument
278 networks_.insert(networks.begin(), networks.end());
H A Dwimax_provider.cc121 // Collects a set of live networks from all devices.
124 const set<RpcIdentifier>& networks = device.second->networks(); local
125 live_networks.insert(networks.begin(), networks.end());
127 // Removes dead networks from |networks_|.
137 // Retrieves network info into |networks_| for the live networks.

Completed in 117 milliseconds