Searched refs:technology (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/chromeos/network/
H A Dnetwork_change_notifier_chromeos.cc198 const std::string& type, const std::string& technology) {
211 // For cellular types, mapping depends on the technology.
212 if (technology == shill::kNetworkTechnologyEvdo ||
213 technology == shill::kNetworkTechnologyGsm ||
214 technology == shill::kNetworkTechnologyUmts ||
215 technology == shill::kNetworkTechnologyHspa) {
217 } else if (technology == shill::kNetworkTechnologyHspaPlus ||
218 technology == shill::kNetworkTechnologyLte ||
219 technology == shill::kNetworkTechnologyLteAdvanced) {
197 ConnectionTypeFromShill( const std::string& type, const std::string& technology) argument
H A Dshill_property_handler.cc133 const std::string& technology) const {
134 return available_technologies_.count(technology) != 0;
138 const std::string& technology) const {
139 return enabled_technologies_.count(technology) != 0;
143 const std::string& technology) const {
144 return enabling_technologies_.count(technology) != 0;
148 const std::string& technology) const {
149 return uninitialized_technologies_.count(technology) != 0;
153 const std::string& technology,
157 enabling_technologies_.insert(technology);
152 SetTechnologyEnabled( const std::string& technology, bool enabled, const network_handler::ErrorCallback& error_callback) argument
379 std::string technology; local
395 std::string technology; local
412 std::string technology; local
420 EnableTechnologyFailed( const std::string& technology, const network_handler::ErrorCallback& error_callback, const std::string& dbus_error_name, const std::string& dbus_error_message) argument
[all...]
H A Dshill_property_handler.h85 // Called when a technology list changes.
112 // Returns true if |technology| is available, enabled, etc.
113 bool IsTechnologyAvailable(const std::string& technology) const;
114 bool IsTechnologyEnabled(const std::string& technology) const;
115 bool IsTechnologyEnabling(const std::string& technology) const;
116 bool IsTechnologyUninitialized(const std::string& technology) const;
118 // Asynchronously sets the enabled state for |technology|.
121 const std::string& technology,
174 const std::string& technology,
H A Dgeolocation_handler.cc82 std::string technology; local
83 (*iter)->GetAsString(&technology);
84 if (technology == shill::kTypeWifi) {
H A Dnetwork_change_notifier_chromeos.h62 // Maps the shill network type and technology to its NetworkChangeNotifier
66 const std::string& technology);
H A Dnetwork_util.h53 std::string technology; // Access technology. member in struct:chromeos::CellularScanResult
H A Dnetwork_util_unittest.cc142 EXPECT_EQ("GSM", scan_results[0].technology);
150 EXPECT_TRUE(scan_results[1].technology.empty());
H A Dnetwork_state_handler.cc103 std::string technology = GetTechnologyForType(type); local
105 if (shill_property_handler_->IsTechnologyEnabled(technology))
107 else if (shill_property_handler_->IsTechnologyEnabling(technology))
109 else if (shill_property_handler_->IsTechnologyUninitialized(technology))
111 else if (shill_property_handler_->IsTechnologyAvailable(technology))
126 std::string* technology = *it; local
127 DCHECK(technology);
128 if (!shill_property_handler_->IsTechnologyAvailable(*technology))
131 base::StringPrintf("%s:%d", technology->c_str(), enabled));
133 *technology, enable
[all...]
H A Dnetwork_change_notifier_chromeos_unittest.cc62 const char* technology; member in struct:chromeos::TypeMapping
69 { "unknown type", "unknown technology",
91 { shill::kTypeCellular, "unknown technology",
98 type_mappings[i].shill_type, type_mappings[i].technology);
H A Dnetwork_util.cc137 &scan_result.technology);
/external/chromium_org/ash/system/chromeos/network/
H A Dnetwork_connect.h32 // Enables or disables a network technology. If |technology| refers to cellular
36 const chromeos::NetworkTypePattern& technology,
H A Dnetwork_connect.cc351 void SetTechnologyEnabled(const NetworkTypePattern& technology, argument
354 base::StringPrintf("technology %s, target state: %s",
355 technology.ToDebugString().c_str(),
359 bool enabled = handler->IsTechnologyEnabled(technology);
365 // User requested to disable the technology.
367 technology, false, chromeos::network_handler::ErrorCallback());
372 // if |technology| has been explicitly set to WiMAX.
373 if (technology.MatchesPattern(NetworkTypePattern::Mobile())) {
374 const DeviceState* mobile = handler->GetDeviceStateByType(technology);
399 technology, tru
[all...]
H A Dnetwork_state_list_detailed_view.h78 const chromeos::NetworkTypePattern& technology);
H A Dnetwork_state_list_detailed_view.cc391 const NetworkTypePattern& technology) {
394 technology);
389 UpdateTechnologyButton( TrayPopupHeaderButton* button, const NetworkTypePattern& technology) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
H A Dsetup.sh31 for f in $techprojects; do checkoutProjects /cvsroot/technology $f ; done
/external/chromium_org/chrome/browser/resources/chromeos/network_configuration/js/
H A Dnetwork_status.js307 * technology (like WiFi or Ethernet) and unfolds a list of nested buttons
310 * @param {string} technology .
314 function TechnologyButton(networkStatus, technology) {
315 var el = new UnfoldingButton(networkStatus, technology);
317 el.decorate(technology);
325 * @param {string} technology .
328 decorate: function(technology) {
329 this.technology_ = technology;
375 get technology() {
535 * @param {string} technology
[all...]
/external/chromium_org/ui/chromeos/network/
H A Dnetwork_icon.cc103 // Cached technology badge for the network when the icon was last generated.
451 const std::string& technology = network->network_technology(); local
452 if (technology == shill::kNetworkTechnologyEvdo) {
456 } else if (technology == shill::kNetworkTechnology1Xrtt) {
458 } else if (technology == shill::kNetworkTechnologyGprs) {
462 } else if (technology == shill::kNetworkTechnologyEdge) {
466 } else if (technology == shill::kNetworkTechnologyUmts) {
470 } else if (technology == shill::kNetworkTechnologyHspa) {
474 } else if (technology == shill::kNetworkTechnologyHspaPlus) {
478 } else if (technology
[all...]
/external/chromium_org/chromeos/dbus/
H A Dshill_manager_client.h50 virtual void AddGeoNetwork(const std::string& technology,
222 // For each technology present, connects to the "best" service available.
H A Dfake_shill_manager_client.h106 virtual void AddGeoNetwork(const std::string& technology,
155 // Dictionary of technology -> list of property dictionaries
H A Dfake_shill_manager_client.cc448 const std::string& technology,
451 if (!stub_geo_networks_.GetListWithoutPathExpansion(technology,
454 stub_geo_networks_.SetWithoutPathExpansion(technology, list_value);
447 AddGeoNetwork( const std::string& technology, const base::DictionaryValue& network) argument
/external/libnfc-nci/src/nfa/include/
H A Dnfa_ee_api.h85 #define NFA_EE_PWR_STATE_NONE 0 /* used to remove a particular technology or protocol based routing cfg of a handle from the routing table. */
143 tNFC_RF_TECH technology; /* NFA_EE_TRGR_RF_TECHNOLOGY:the technology that triggers this event */ member in union:__anon24021
303 ** default routing based on RF technology in the listen mode
/external/qemu/telephony/
H A Dandroid_modem.c285 AModemTech technology; member in struct:AModemRec_
512 modem->technology = android_parse_modem_tech( tmp );
513 if (modem->technology == A_TECH_UNKNOWN) {
514 modem->technology = aconfig_int( modem->nvram_config, NV_MODEM_TECHNOLOGY, A_TECH_GSM );
1024 * return: If the specified technology is not set in any of the 4
1047 * lowest numbered technology that is set in the mask.
1066 modem->technology, newtech, modem->preferred_mask,newpreferred);
1071 return "ERROR: At least one technology must be enabled";
1083 if (modem->technology != newtech) {
1084 modem->technology
[all...]
/external/chromium_org/chrome/browser/chromeos/status/
H A Dnetwork_menu.cc61 void ToggleTechnology(const NetworkTypePattern& technology) { argument
63 bool is_enabled = handler->IsTechnologyEnabled(technology);
64 ash::network_connect::SetTechnologyEnabled(technology, !is_enabled);
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dchoose_mobile_network_ui.cc52 const char kTechnologyProperty[] = "technology";
181 // Register API doesn't allow technology to be specified so just show unique
193 network->SetString(kTechnologyProperty, it->technology);
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Dinternet_options_handler.cc225 const std::string& technology = cellular->network_technology(); local
226 if (technology != shill::kNetworkTechnologyLte &&
227 technology != shill::kNetworkTechnologyLteAdvanced)

Completed in 9617 milliseconds

12