HomeSort by relevance Sort by last modified time
    Searched defs:cellular (Results 1 - 15 of 15) sorted by null

  /external/chromium/chrome/browser/chromeos/status/
network_dropdown_button.cc 92 const CellularNetwork* cellular = local
94 SetIcon(*IconForNetworkStrength(cellular, true));
95 SetText(UTF8ToWide(cellular->name()));
network_menu_button.cc 127 const NetworkDevice* cellular = network_library->FindCellularDevice(); local
128 if (cellular) {
129 cellular_device_path_ = cellular->device_path();
130 was_sim_locked_ = cellular->is_sim_locked();
167 const NetworkDevice* cellular = cros->FindCellularDevice(); local
168 if (cellular) {
173 if (was_sim_locked_ && !cellular->is_sim_locked() &&
177 was_sim_locked_ = cellular->is_sim_locked();
248 const Network* cellular = local
250 if (!cellular)
380 const CellularNetwork* cellular = local
408 const NetworkDevice* cellular = cros->FindCellularDevice(); local
    [all...]
network_menu.cc 136 CellularNetwork* cellular = cros->FindCellularNetworkByPath( local
138 if (cellular) {
139 if ((cellular->activation_state() != ACTIVATION_STATE_ACTIVATED &&
140 cellular->activation_state() != ACTIVATION_STATE_UNKNOWN) ||
141 cellular->needs_new_plan()) {
142 ActivateCellular(cellular);
144 } else if (cellular->connecting_or_connected()) {
145 // Cellular network is connecting or connected,
146 // so we show the config settings for the cellular network.
147 owner_->ShowTabbedNetworkSettings(cellular);
250 const NetworkDevice* cellular = cros->FindCellularDevice(); local
595 const NetworkDevice* cellular = cros->FindCellularDevice(); local
737 const CellularNetwork* cellular = local
    [all...]
  /external/chromium_org/components/onc/
onc_constants.h 81 namespace cellular { namespace in namespace:onc
112 } // namespace cellular
onc_constants.cc 36 const char kCellular[] = "Cellular";
53 const char kCellular[] = "Cellular";
59 namespace cellular { namespace in namespace:onc
90 } // namespace cellular
  /external/chromium/chrome/browser/chromeos/
network_message_observer.cc 94 const chromeos::CellularNetwork* cellular = lib->cellular_network(); local
95 if (!cellular)
97 browser->ShowSingletonTab(GURL(cellular->payment_url()));
121 const CellularNetwork* cellular) {
124 UTF8ToUTF16(cellular->name())));
128 UTF8ToUTF16(cellular->name())),
246 const CellularNetwork* cellular = cros->cellular_network(); local
247 if (!cellular || !cellular->SupportsDataPlan())
251 cros->GetDataPlans(cellular->service_path())
    [all...]
user_cros_settings_provider.cc 281 const NetworkDevice* cellular = cros->FindCellularDevice(); local
282 if (cellular) {
283 bool device_value = cellular->data_roaming_allowed();
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
choose_mobile_network_ui.cc 127 const DeviceState* cellular = local
128 handler->GetDeviceStateByType(NetworkTypePattern::Cellular());
129 if (!cellular) {
131 "A cellular device is not available.",
132 "Cannot initiate a cellular network scan without a cellular device.");
136 device_path_ = cellular->path();
163 const DeviceState* cellular = GetNetworkStateHandler()->GetDeviceState( local
166 if (!cellular) {
167 LOG(WARNING) << "Cellular device with path '" << device_path
    [all...]
sim_unlock_ui.cc 202 // Returns the cellular device that this dialog currently corresponds to.
250 void ProcessSimCardState(const DeviceState* cellular);
253 void UpdatePage(const DeviceState* cellular, const std::string& error_msg);
258 // Path of the Cellular device that we monitor property updates from.
367 ->GetTechnologyState(NetworkTypePattern::Cellular()) !=
400 LOG(WARNING) << "Cellular device with path '" << cellular_device_path_
423 const DeviceState* cellular = GetCellularDevice(); local
424 if (!cellular) {
425 VLOG(1) << "Cellular device disappeared. Dismissing dialog.";
446 ProcessSimCardState(cellular);
507 const DeviceState* cellular = GetCellularDevice(); local
527 const DeviceState* cellular = GetCellularDevice(); local
547 const DeviceState* cellular = GetCellularDevice(); local
568 const DeviceState* cellular = GetCellularDevice(); local
    [all...]
  /external/chromium_org/ash/system/chromeos/network/
network_connect.cc 361 // SIM locking only applies to cellular, so the code below won't execute
369 // The following only applies to cellular.
372 // If this is true, then we have a cellular device with no SIM inserted.
375 // cellular. See crbug.com/125171.
376 NET_LOG_USER("Cannot enable cellular device without SIM.", log_string);
394 const NetworkState* cellular = GetNetworkState(service_path); local
395 if (!cellular || cellular->type() != shill::kTypeCellular) {
401 GetDeviceState(cellular->device_path());
412 if (cellular->activation_state() == shill::kActivationStateActivated)
426 const NetworkState* cellular = handler->GetNetworkState(service_path); local
    [all...]
  /external/chromium/chrome/browser/ui/webui/chromeos/
sim_unlock_ui.cc 209 void ProcessSimCardState(const chromeos::NetworkDevice* cellular);
212 void UpdatePage(const chromeos::NetworkDevice* cellular,
218 // Path of the Cellular device that we monitor property updates from.
314 const chromeos::NetworkDevice* cellular = GetCellularDevice(); local
316 if (cellular) {
317 cellular_device_path_ = cellular->device_path();
367 const NetworkDevice* cellular = cros->FindCellularDevice(); local
368 DCHECK(cellular);
387 ProcessSimCardState(cellular);
413 const NetworkDevice* cellular = GetCellularDevice() local
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.cc 383 const chromeos::NetworkDevice* cellular = cros->FindCellularDevice(); local
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(); local
511 if (!cellular)
514 cros->GetDataPlans(cellular->service_path())
640 const chromeos::CellularNetwork* cellular = local
916 chromeos::CellularNetwork* cellular = NULL; local
973 const chromeos::CellularNetwork* cellular = local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
device_settings_provider.cc 849 const DeviceState* cellular local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.cc 170 const char kTagCellular[] = "cellular";
729 void PopulateCellularDetails(const NetworkState* cellular,
2071 const DeviceState* cellular = local
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
network_library.cc 35 // NetworkDevice: e.g. ethernet, wifi modem, cellular modem
42 // WirelessNetwork: a Wifi or Cellular Network.
48 // active_cellular_: Cellular version of wifi_.
49 // cellular_networks_: Cellular version of wifi_.
66 // TODO(stevenjb): Document cellular data plan handlers.
80 // All *Pin(...) methods use internal callback that would update cellular
93 // How long we should remember that cellular plan payment was received.
97 // retries count once cellular device with SIM card is initialized.
98 // If cellular device doesn't have SIM card, then retries are never used.
136 const char* kActivationStateProperty = "Cellular.ActivationState"
2467 const NetworkDevice* cellular = FindCellularDevice(); local
2482 const NetworkDevice* cellular = FindCellularDevice(); local
2494 const NetworkDevice* cellular = FindCellularDevice(); local
2507 const NetworkDevice* cellular = FindCellularDevice(); local
2551 const NetworkDevice* cellular = FindCellularDevice(); local
2560 const NetworkDevice* cellular = FindCellularDevice(); local
2582 const NetworkDevice* cellular = FindCellularDevice(); local
2890 const NetworkDevice* cellular = FindCellularDevice(); local
3613 CellularNetwork* cellular = new CellularNetwork(service_path); local
3913 const NetworkDevice* cellular = FindCellularDevice(); local
4046 CellularNetwork* cellular = FindCellularNetworkByPath(service_path); local
4082 NetworkDevice* cellular = new NetworkDevice("cellular"); local
    [all...]

Completed in 1438 milliseconds