HomeSort by relevance Sort by last modified time
    Searched refs:cellular (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/chromeos/network/onc/
onc_translation_tables.cc 114 { cellular::kActivateOverNonCellularNetwork,
116 { cellular::kActivationState, flimflam::kActivationStateProperty },
117 { cellular::kAllowRoaming, flimflam::kCellularAllowRoamingProperty },
118 { cellular::kAPN, flimflam::kApnProperty },
119 { cellular::kCarrier, flimflam::kCarrierProperty },
120 { cellular::kESN, flimflam::kEsnProperty },
121 { cellular::kFamily, flimflam::kTechnologyFamilyProperty },
122 { cellular::kFirmwareRevision, flimflam::kFirmwareRevisionProperty },
123 { cellular::kFoundNetworks, flimflam::kFoundNetworksProperty },
124 { cellular::kHardwareRevision, flimflam::kHardwareRevisionProperty }
    [all...]
onc_signature.cc 208 { cellular::kActivateOverNonCellularNetwork, &kBoolSignature },
209 { cellular::kActivationState, &kStringSignature },
210 { cellular::kAllowRoaming, &kStringSignature },
211 { cellular::kAPN, &kStringSignature },
212 { cellular::kCarrier, &kStringSignature },
213 { cellular::kESN, &kStringSignature },
214 { cellular::kFamily, &kStringSignature },
215 { cellular::kFirmwareRevision, &kStringSignature },
216 { cellular::kFoundNetworks, &kStringSignature },
217 { cellular::kHardwareRevision, &kStringSignature }
    [all...]
  /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...]
network_message_observer.h 36 virtual void ShowNeedsPlanNotification(const CellularNetwork* cellular);
49 // Saves the current cellular and plan information.
51 void SaveLastCellularInfo(const CellularNetwork* cellular,
61 // Last cellular data plan unique id.
63 // Last cellular data plan type.
65 // Last cellular data left.
  /external/chromium_org/chrome/browser/chromeos/options/
network_connect.cc 51 const NetworkState* cellular = handler->GetNetworkState(service_path); local
52 if (cellular && cellular->type() == flimflam::kTypeCellular &&
53 cellular->activation_state() != flimflam::kActivationStateActivated &&
54 cellular->activate_over_non_cellular_networks() &&
56 std::string technology = cellular->network_technology();
68 UTF8ToUTF16((cellular->name()))),
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
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.
399 LOG(WARNING) << "Cellular device with path '" << cellular_device_path_
422 const DeviceState* cellular = GetCellularDevice(); local
423 if (!cellular) {
424 VLOG(1) << "Cellular device disappeared. Dismissing dialog.";
445 ProcessSimCardState(cellular);
506 const DeviceState* cellular = GetCellularDevice() local
526 const DeviceState* cellular = GetCellularDevice(); local
546 const DeviceState* cellular = GetCellularDevice(); local
567 const DeviceState* cellular = GetCellularDevice(); local
    [all...]
choose_mobile_network_ui.cc 125 const DeviceState* cellular = handler->GetDeviceStateByType( local
127 if (!cellular) {
129 "A cellular device is not available.",
130 "Cannot initiate a cellular network scan without a cellular device.");
134 device_path_ = cellular->path();
161 const DeviceState* cellular = GetNetworkStateHandler()->GetDeviceState( local
164 if (!cellular) {
165 LOG(WARNING) << "Cellular device with path '" << device_path_
170 cellular->scan_results()
    [all...]
  /external/chromium/chrome/browser/chromeos/status/
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...]
network_dropdown_button.cc 92 const CellularNetwork* cellular = local
94 SetIcon(*IconForNetworkStrength(cellular, true));
95 SetText(UTF8ToWide(cellular->name()));
network_menu.h 35 // "ethernet" | "wifi" | "cellular" | "other".
151 // Used to update top up URL only when cellular carrier has changed.
158 void ActivateCellular(const CellularNetwork* cellular) const;
167 // It will also handle connecting to another wifi/cellular network.
175 // <icon> Cellular Network A
176 // <icon> Cellular Network B
177 // <icon> Cellular Network C
192 // <icon> will show the strength of the wifi/cellular networks.
215 // Returns the Icon for a network strength for CellularNetwork |cellular|.
219 static const SkBitmap* IconForNetworkStrength(const CellularNetwork* cellular,
    [all...]
  /external/chromium_org/chrome/test/functional/
chromeos_gsm_compliance.py 55 cellular_name: The name in the icon of the cellular network.
62 cellular = 'cellular_networks'
64 self.assertTrue(self.WaitUntil(lambda: cellular in
68 self.assertTrue(False, msg='No cellular networks appeared on scan.')
69 network_info = self.NetworkScan()[cellular]
73 self.assertTrue(result, msg='The cellular network name did not match %s.'
  /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...]
internet_options_handler.h 59 // Handle{Wifi,Cellular}ButtonClick handles button click on a wireless
60 // network item and a cellular network item respectively.
69 // Initiates cellular plan data refresh. The results from libcros will be
74 const chromeos::CellularNetwork* cellular,
97 const chromeos::CellularNetwork* cellular,
131 // case of cellular networks, network technology and roaming status.
  /external/chromium_org/chrome/browser/chromeos/status/
data_promo_notification.cc 86 LOG(ERROR) << "Empty carrier ID with a cellular connected.";
165 const chromeos::CellularNetwork* cellular = cros->cellular_network(); local
166 DCHECK(cellular);
169 if (cellular->network_technology() == NETWORK_TECHNOLOGY_UNKNOWN)
184 (cellular->network_technology() == NETWORK_TECHNOLOGY_LTE ||
185 cellular->network_technology() == NETWORK_TECHNOLOGY_LTE_ADVANCED)
  /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...]
choose_mobile_network_ui.cc 139 if (const NetworkDevice* cellular = cros->FindCellularDevice()) {
140 device_path_ = cellular->device_path();
  /external/chromium_org/chrome/browser/chromeos/cros/
network_library_impl_cros.cc 288 const NetworkDevice* cellular = FindCellularDevice(); local
289 if (!cellular) {
290 NOTREACHED() << "Calling ChangePin method w/o cellular device.";
295 cellular->device_path(), old_pin, new_pin,
304 const NetworkDevice* cellular = FindCellularDevice(); local
305 if (!cellular) {
306 NOTREACHED() << "Calling ChangeRequirePin method w/o cellular device.";
311 cellular->device_path(), pin, require_pin,
317 const NetworkDevice* cellular = FindCellularDevice(); local
318 if (!cellular) {
330 const NetworkDevice* cellular = FindCellularDevice(); local
367 const NetworkDevice* cellular = FindCellularDevice(); local
377 const NetworkDevice* cellular = FindCellularDevice(); local
397 const NetworkDevice* cellular = FindCellularDevice(); local
412 const NetworkDevice* cellular = FindCellularDevice(); local
421 const NetworkDevice* cellular = FindCellularDevice(); local
    [all...]
network_library_impl_stub.cc 53 // Enable only Cellular initially
283 NetworkDevice* cellular = new NetworkDevice("cellular"); local
284 cellular->type_ = TYPE_CELLULAR;
285 cellular->set_technology_family(TECHNOLOGY_FAMILY_CDMA);
286 cellular->set_carrier("Generic CDMA Carrier 2");
287 cellular->imsi_ = "123456789012345";
288 cellular->set_supported_carriers(supported_carriers);
289 device_map_["cellular"] = cellular;
    [all...]
network_parser.cc 157 CellularNetwork* cellular = new CellularNetwork(service_path); local
158 return cellular;
  /external/chromium/chrome/browser/resources/options/chromeos/
internet_options_page.css 199 #detailsInternetPage[ethernet] .cellular-details,
200 #detailsInternetPage[cellular] .wifi-details,
201 #detailsInternetPage[wireless] .cellular-details,
  /external/chromium_org/ash/system/chromeos/network/
network_connect.cc 259 const NetworkState* cellular = local
262 if (!cellular || cellular->type() != flimflam::kTypeCellular) {
268 GetDeviceState(cellular->device_path());
277 if (!cellular->payment_url().empty())
282 if (cellular->activation_state() == flimflam::kActivationStateActivated) {
  /external/chromium_org/chrome/browser/chromeos/system/
ash_system_tray_delegate.cc 226 const CellularNetwork* cellular) {
227 if (cellular->network_technology() == NETWORK_TECHNOLOGY_LTE ||
228 cellular->network_technology() == NETWORK_TECHNOLOGY_LTE_ADVANCED)
825 const NetworkDevice* cellular = crosnet->FindCellularDevice(); variable
826 if (!cellular)
1279 const NetworkState* cellular = variable
1304 const Network* cellular = variable
1353 const CellularNetwork* cellular = cellular_networks[0]; 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...]
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.cc 174 const char kTagCellular[] = "cellular";
736 void PopulateCellularDetails(const NetworkState* cellular,
2052 const DeviceState* cellular = local
    [all...]

Completed in 2387 milliseconds

1 2