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

1 2

  /external/chromium_org/components/wifi/
network_properties.cc 32 DCHECK(type == onc::network_type::kWiFi);
58 value->Set(onc::network_type::kWiFi, wifi.release());
73 std::string network_type; local
75 if (value.GetString(onc::network_config::kType, &network_type)) {
76 if (network_type != onc::network_type::kWiFi)
78 type = network_type;
80 if (value.GetDictionary(onc::network_type::kWiFi, &wifi)) {
114 if (l.type == onc::network_type::kEthernet)
116 if (r.type == onc::network_type::kEthernet
    [all...]
fake_wifi_service.cc 21 network_properties.type = onc::network_type::kWiFi;
47 network_properties.type = onc::network_type::kWiFi;
124 void FakeWiFiService::GetVisibleNetworks(const std::string& network_type,
130 if (network_type.empty() || network_type == onc::network_type::kAllTypes ||
131 it->type == network_type) {
fake_wifi_service.h 41 virtual void GetVisibleNetworks(const std::string& network_type,
wifi_service.h 83 // Get list of visible networks of |network_type| (one of onc::network_type).
85 virtual void GetVisibleNetworks(const std::string& network_type,
wifi_service_win.cc 206 virtual void GetVisibleNetworks(const std::string& network_type,
559 if (!properties->HasKey(onc::network_type::kWiFi)) {
627 void WiFiServiceImpl::GetVisibleNetworks(const std::string& network_type,
630 if (!network_type.empty() &&
631 network_type != onc::network_type::kAllTypes &&
632 network_type != onc::network_type::kWiFi) {
    [all...]
  /external/chromium_org/ui/chromeos/network/
network_icon.h 47 const std::string& network_type);
52 const std::string& network_type);
57 const std::string& network_type);
network_icon.cc 275 const std::string& network_type,
278 network_type(network_type),
283 if (network_type != other.network_type)
284 return network_type < other.network_type;
288 std::string network_type; member in struct:ui::network_icon::__anon21305::ImageIdForNetworkType
344 const std::string& network_type) {
345 if (network_type == shill::kTypeVPN)
    [all...]
  /external/chromium_org/media/cast/test/utility/
udp_proxy_main.cc 134 std::string network_type; local
143 network_type = argv[4];
146 network_type = argv[2];
152 if (network_type == "perfect") {
154 } else if (network_type == "wifi") {
157 } else if (network_type == "bad") {
160 } else if (network_type == "evil") {
tap_proxy.cc 284 std::string network_type = argv[3]; local
285 if (network_type == "perfect") {
287 } else if (network_type == "good") {
290 } else if (network_type == "wifi") {
293 } else if (network_type == "bad") {
296 } else if (network_type == "evil") {
  /external/chromium_org/chrome/browser/extensions/api/networking_private/
networking_private_api.cc 209 std::string network_type = private_api::ToString(params->filter.network_type); local
218 network_type,
250 std::string network_type = private_api::ToString(params->network_type); local
255 network_type,
296 if (type == ::onc::network_type::kEthernet) {
299 } else if (type == ::onc::network_type::kWiFi) {
302 } else if (type == ::onc::network_type::kWimax) {
305 } else if (type == ::onc::network_type::kCellular)
    [all...]
networking_private_chromeos.cc 235 const std::string& network_type,
242 chromeos::onc::NetworkTypePatternFromOncType(network_type);
378 network_list->AppendString(::onc::network_type::kEthernet);
380 network_list->AppendString(::onc::network_type::kWiFi);
382 network_list->AppendString(::onc::network_type::kWimax);
384 network_list->AppendString(::onc::network_type::kCellular);
networking_private_chromeos.h 43 virtual void GetNetworks(const std::string& network_type,
networking_private_delegate.h 65 virtual void GetNetworks(const std::string& network_type,
networking_private_service_client.h 136 virtual void GetNetworks(const std::string& network_type,
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
network_state_informer.h 82 std::string network_type() const { return network_type_; } function in class:chromeos::NetworkStateInformer
enrollment_screen_handler.cc 492 const std::string network_type = network_state_informer_->network_type(); local
493 params.SetString("lastNetworkType", network_type);
  /external/chromium_org/ash/system/chromeos/network/
network_state_notifier.cc 69 const std::string& network_type,
73 int icon_id = (network_type == shill::kTypeCellular) ?
317 std::string network_type; local
319 &network_type);
323 network_type,
  /external/chromium_org/chromeos/network/
policy_util.cc 89 if (actual_network_type == ::onc::network_type::kEthernet) {
106 } else if (actual_network_type == ::onc::network_type::kWiFi) {
164 if (type == ::onc::network_type::kWiFi) {
169 } else if (type == ::onc::network_type::kVPN) {
network_util.cc 187 if (onc_type == ::onc::network_type::kEthernet)
  /external/chromium_org/chromeos/network/onc/
onc_utils.cc 659 if (type == ::onc::network_type::kAllTypes)
661 if (type == ::onc::network_type::kCellular)
663 if (type == ::onc::network_type::kEthernet)
665 if (type == ::onc::network_type::kVPN)
667 if (type == ::onc::network_type::kWiFi)
669 if (type == ::onc::network_type::kWimax)
671 if (type == ::onc::network_type::kWireless)
onc_validator.cc 473 ::onc::network_type::kEthernet, ::onc::network_type::kVPN,
474 ::onc::network_type::kWiFi, ::onc::network_type::kCellular};
498 type != ::onc::network_type::kWiFi &&
499 type != ::onc::network_type::kEthernet) {
506 if (type == ::onc::network_type::kWiFi) {
508 } else if (type == ::onc::network_type::kEthernet) {
511 } else if (type == ::onc::network_type::kCellular) {
514 } else if (type == ::onc::network_type::kVPN)
    [all...]
onc_normalizer.cc 173 type == ::onc::network_type::kEthernet);
175 network, ::onc::network_config::kVPN, type == ::onc::network_type::kVPN);
178 type == ::onc::network_type::kWiFi);
onc_translation_tables.cc 274 // { network_type::kEthernet, shill::kTypeEthernet },
275 // { network_type::kEthernet, shill::kTypeEthernetEap },
276 { ::onc::network_type::kWiFi, shill::kTypeWifi},
277 { ::onc::network_type::kWimax, shill::kTypeWimax},
278 { ::onc::network_type::kCellular, shill::kTypeCellular},
279 { ::onc::network_type::kVPN, shill::kTypeVPN},
onc_translator_onc_to_shill.cc 257 if (type != ::onc::network_type::kEthernet)
261 if (type == ::onc::network_type::kVPN) {
  /external/chromium_org/components/onc/
onc_constants.cc 77 namespace network_type { namespace in namespace:onc
85 } // namespace network_type

Completed in 496 milliseconds

1 2