Home | History | Annotate | Download | only in net

Lines Matching refs:network

41   const chromeos::Network* network = lib->active_network();
43 // Check if active network was added, removed or changed.
44 if ((!network && has_active_network_) ||
45 (network && (!has_active_network_ ||
46 network->service_path() != service_path_ ||
47 network->ip_address() != ip_address_))) {
50 if (!network) {
56 service_path_ = network->service_path();
57 lib->AddNetworkObserver(network->service_path(), this);
58 ip_address_ = network->ip_address();
69 const chromeos::Network* network) {
70 if (!network) {
74 // Active network changed?
75 if (network->service_path() != service_path_) {
79 if (network->connectivity_state() != connectivity_state_) {
80 connectivity_state_ = network->connectivity_state();