Searched refs:technologies (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/device/nfc/
H A Dnfc_tag_chromeos.cc97 // Determine supported technologies based on the tag's protocol and
106 NfcTagTechnology::TechnologyTypeMask technologies = 0; local
107 technologies |= NfcTagTechnology::kTechnologyTypeNdef;
110 return technologies | NfcTagTechnology::kTechnologyTypeNfcF;
115 technologies |= NfcTagTechnology::kTechnologyTypeIsoDep;
119 return technologies;
122 return technologies | NfcTagTechnology::kTechnologyTypeNfcA;
/external/chromium_org/chromeos/network/
H A Dgeolocation_handler.cc75 const base::ListValue* technologies = NULL; local
76 if (!value.GetAsList(&technologies) || !technologies)
80 for (base::ListValue::const_iterator iter = technologies->begin();
81 iter != technologies->end(); ++iter) {
H A Dshill_property_handler.cc372 const base::ListValue& technologies) {
374 technologies_str << technologies; local
377 for (base::ListValue::const_iterator iter = technologies.begin();
378 iter != technologies.end(); ++iter) {
388 const base::ListValue& technologies) {
390 technologies_str << technologies; local
393 for (base::ListValue::const_iterator iter = technologies.begin();
394 iter != technologies.end(); ++iter) {
405 const base::ListValue& technologies) {
407 technologies_str << technologies; local
371 UpdateAvailableTechnologies( const base::ListValue& technologies) argument
387 UpdateEnabledTechnologies( const base::ListValue& technologies) argument
404 UpdateUninitializedTechnologies( const base::ListValue& technologies) argument
[all...]
H A Dnetwork_state_handler.cc123 ScopedVector<std::string> technologies = GetTechnologiesForType(type); local
124 for (ScopedVector<std::string>::iterator it = technologies.begin();
125 it != technologies.end(); ++it) {
949 ScopedVector<std::string> technologies; local
951 technologies.push_back(new std::string(shill::kTypeEthernet));
953 technologies.push_back(new std::string(shill::kTypeWifi));
955 technologies.push_back(new std::string(shill::kTypeWimax));
957 technologies.push_back(new std::string(shill::kTypeCellular));
959 technologies.push_back(new std::string(shill::kTypeBluetooth));
961 technologies
[all...]
H A Dshill_property_handler.h168 // Sets |*_technologies_| to contain only entries in |technologies|.
169 void UpdateAvailableTechnologies(const base::ListValue& technologies);
170 void UpdateEnabledTechnologies(const base::ListValue& technologies);
171 void UpdateUninitializedTechnologies(const base::ListValue& technologies);
235 // Lists of available / enabled / uninitialized technologies
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dnfc_debug_ui.cc68 // NFC tag technologies.
619 base::ListValue* technologies = new base::ListValue(); local
623 technologies->AppendString(kTagTechnologyNfcA);
625 technologies->AppendString(kTagTechnologyNfcB);
627 technologies->AppendString(kTagTechnologyNfcF);
629 technologies->AppendString(kTagTechnologyNfcV);
631 technologies->AppendString(kTagTechnologyIsoDep);
633 technologies->AppendString(kTagTechnologyNdef);
634 out->Set(kTagSupportedTechnologiesProperty, technologies);
/external/chromium_org/chromeos/dbus/
H A Dfake_shill_manager_client.cc922 const base::ListValue* technologies; local
924 shill::kEnabledTechnologiesProperty, &technologies)) {
926 if (technologies->Find(type_value) != technologies->end())

Completed in 532 milliseconds