Home | History | Annotate | Download | only in chromeos

Lines Matching refs:cellular

383   const chromeos::NetworkDevice* cellular = cros->FindCellularDevice();
384 if (!cellular) {
385 LOG(ERROR) << "Didn't find cellular device, it should have been available.";
387 } else if (cellular->sim_lock_state() == chromeos::SIM_UNLOCKED ||
388 cellular->sim_lock_state() == chromeos::SIM_UNKNOWN) {
483 // to set up individual observers for the cellular networks
495 // Always monitor the cellular networks, if any, so that changes
510 const chromeos::CellularNetwork* cellular = cros->cellular_network();
511 if (!cellular)
514 cros->GetDataPlans(cellular->service_path());
523 connection_plans.SetString("servicePath", cellular->service_path());
524 connection_plans.SetBoolean("needsPlan", cellular->needs_new_plan());
526 cellular->activation_state() == chromeos::ACTIVATION_STATE_ACTIVATED);
528 SetActivationButtonVisibility(cellular, &connection_plans);
640 const chromeos::CellularNetwork* cellular =
642 if (!cellular) {
645 PopulateCellularDetails(cros, cellular, &dictionary);
671 const chromeos::CellularNetwork* cellular,
673 // Cellular network / connection settings.
674 dictionary->SetString("serviceName", cellular->name());
676 cellular->GetNetworkTechnologyString());
677 dictionary->SetString("operatorName", cellular->operator_name());
678 dictionary->SetString("operatorCode", cellular->operator_code());
680 cellular->GetActivationStateString());
682 cellular->GetRoamingStateString());
684 cellular->restricted_pool() ?
689 dictionary->SetString("errorState", cellular->GetErrorString());
690 dictionary->SetString("supportUrl", cellular->payment_url());
691 dictionary->SetBoolean("needsPlan", cellular->needs_new_plan());
692 dictionary->SetBoolean("gsm", cellular->is_gsm());
693 const chromeos::CellularNetwork::Apn& apn = cellular->apn();
699 cellular->last_good_apn();
707 cros->FindNetworkDeviceByPath(cellular->device_path());
735 SetActivationButtonVisibility(cellular, dictionary);
745 const chromeos::CellularNetwork* cellular,
747 if (cellular->needs_new_plan()) {
749 } else if (cellular->activation_state() !=
751 cellular->activation_state() !=
916 chromeos::CellularNetwork* cellular = NULL;
919 } else if ((cellular = cros->FindCellularNetworkByPath(service_path))) {
921 cros->ConnectToCellularNetwork(cellular);
923 cros->DisconnectFromNetwork(cellular);
929 PopulateDictionaryDetails(cellular, cros);
973 const chromeos::CellularNetwork* cellular =
975 if (cellular)
976 cellular->RefreshDataPlansIfNeeded();