/system/connectivity/shill/ |
H A D | device_stub.h | 49 Technology::Identifier technology) 51 address, interface_index, technology) {} 42 DeviceStub(ControlInterface* control_interface, EventDispatcher* dispatcher, Metrics* metrics, Manager* manager, const std::string& link_name, const std::string& address, int interface_index, Technology::Identifier technology) argument
|
H A D | mock_virtual_device.cc | 27 Technology::Identifier technology) 29 interface_index, technology) {} 21 MockVirtualDevice(ControlInterface* control, EventDispatcher* dispatcher, Metrics* metrics, Manager* manager, const std::string& link_name, int interface_index, Technology::Identifier technology) argument
|
H A D | technology.cc | 17 #include "shill/technology.h" 135 name + " is an unknown technology name"); 152 bool Technology::IsPrimaryConnectivityTechnology(Identifier technology) { argument 153 return (technology == kCellular || 154 technology == kEthernet || 155 technology == kWifi || 156 technology == kWiMax || 157 technology == kPPPoE);
|
H A D | virtual_device.cc | 44 Technology::Identifier technology) 46 kHardwareAddressEmpty, interface_index, technology) {} 38 VirtualDevice(ControlInterface* control, EventDispatcher* dispatcher, Metrics* metrics, Manager* manager, const string& link_name, int interface_index, Technology::Identifier technology) argument
|
H A D | connection.h | 31 #include "shill/technology.h" 139 virtual Technology::Identifier technology() const { return technology_; } function in class:shill::Connection
|
H A D | device_info.h | 38 #include "shill/technology.h" 180 technology(Technology::kUnknown) 198 Technology::Identifier technology; member in struct:shill::DeviceInfo::Info 235 // is |interface_index| and detected technology is |technology|. 239 Technology::Identifier technology);
|
H A D | connection.cc | 113 Technology::Identifier technology, 122 technology_(technology), 143 << Technology::NameFromIdentifier(technology) << ")"; 111 Connection(int interface_index, const std::string& interface_name, Technology::Identifier technology, const DeviceInfo* device_info, ControlInterface* control_interface) argument
|
H A D | device.h | 44 #include "shill/technology.h" 83 Technology::Identifier technology); 241 virtual Technology::Identifier technology() const { return technology_; } function in class:shill::Device 288 // (if necessary). Derived classes may implement any technology 625 // device technology.
|
H A D | device_info.cc | 186 Technology::Identifier technology = info.second.technology; local 188 // If there is more than one device for a technology and at least 191 initialized_technologies.insert(technology); 192 unique_technologies.erase(Technology::NameFromIdentifier(technology)); 195 if (Technology::IsPrimaryConnectivityTechnology(technology) && 196 !ContainsKey(initialized_technologies, technology)) 197 unique_technologies.insert(Technology::NameFromIdentifier(technology)); 210 device->technology())) { 213 metrics_->RegisterDevice(device->interface_index(), device->technology()); 450 CreateDevice(const string& link_name, const string& address, int interface_index, Technology::Identifier technology) argument 619 Technology::Identifier technology = Technology::kUnknown; local 1144 Technology::Identifier technology = GetDeviceTechnology(link_name); local [all...] |
H A D | device_info_unittest.cc | 134 Technology::Identifier technology) { 136 technology); 372 EXPECT_CALL(*device0, technology()).WillRepeatedly(Return(Technology::kWifi)); 383 EXPECT_CALL(*device1, technology()). 397 device_info_.infos_[0].technology = Technology::kUnknown; 401 device_info_.infos_[1].technology = Technology::kCellular; 408 device_info_.infos_[2].technology = Technology::kWiMax; 425 device_info_.infos_[3].technology = Technology::kCellular; 691 EXPECT_TRUE(device->technology() == Technology::kBlacklisted); 703 EXPECT_TRUE(device->technology() 131 CreateDevice(const std::string& link_name, const std::string& address, int interface_index, Technology::Identifier technology) argument [all...] |
H A D | device_unittest.cc | 69 #include "shill/technology.h" 108 Technology::Identifier technology) 110 address, interface_index, technology) { 811 device_->technology(), 814 NotifyIPv6ConnectivityStatus(device_->technology(), false)); 1609 device_->technology(), 1612 NotifyIPv6ConnectivityStatus(device_->technology(), true)); 1980 EXPECT_CALL(manager_, IsPortalDetectionEnabled(device_->technology())) 1995 EXPECT_CALL(manager_, IsPortalDetectionEnabled(device_->technology())) 2010 EXPECT_CALL(manager_, IsPortalDetectionEnabled(device_->technology())) 101 TestDevice(ControlInterface* control_interface, EventDispatcher* dispatcher, Metrics* metrics, Manager* manager, const std::string& link_name, const std::string& address, int interface_index, Technology::Identifier technology) argument [all...] |
H A D | service.cc | 75 "technology not connectable"; 147 Technology::Identifier technology) 169 technology_(technology), 303 LOG(INFO) << Technology::NameFromIdentifier(technology) << " service " 969 return Technology::NameFromIdentifier(technology()); 1114 // sorted higher than other connected services based on technology order. 1141 if (DecideBetween(a->technology() == *it, b->technology() == *it, &ret)) { 143 Service(ControlInterface* control_interface, EventDispatcher* dispatcher, Metrics* metrics, Manager* manager, Technology::Identifier technology) argument
|
H A D | service.h | 42 #include "shill/technology.h" 160 Technology::Identifier technology); 312 // of this service's technology via a property set on it. 423 virtual Technology::Identifier technology() const { return technology_; } function in class:shill::Service
|
H A D | device.cc | 71 #include "shill/technology.h" 146 Technology::Identifier technology) 164 technology_(technology), 450 return Technology::NameFromIdentifier(technology()); 1089 Metrics::kMetricExpiredLeaseLengthSecondsSuffix, technology()), 1299 !manager_->IsPortalDetectionEnabled(technology())) { 1300 // If portal detection is disabled for this technology, immediately set 1387 if (!manager_->IsTechnologyLinkMonitorEnabled(technology())) { 1674 technology()), 1683 Metrics::kMetricPortalAttemptsToOnlineSuffix, technology()), 139 Device(ControlInterface* control_interface, EventDispatcher* dispatcher, Metrics* metrics, Manager* manager, const string& link_name, const string& address, int interface_index, Technology::Identifier technology) argument [all...] |
H A D | manager.cc | 883 Technology::Identifier technology = local 885 if (technology == Technology::kUnknown) { 888 "Could not determine technology for entry: " + entry_name); 896 if (technology == Technology::kEthernet) { 902 } else if (ContainsKey(providers_, technology)) { 904 providers_[technology]->CreateTemporaryServiceFromProfile( 994 Technology::Identifier technology) const { 995 return IsTechnologyInList(props_.link_monitor_technologies, technology); 999 Technology::Identifier technology) const { 1000 return IsTechnologyInList(props_.no_auto_connect_technologies, technology); 1365 OnTechnologyProhibited(Technology::Identifier technology, const Error& error) argument 1997 Technology::Identifier technology = service->technology(); local 2297 Technology::Identifier technology = Technology::IdentifierFromName(type); local 2388 Technology::Identifier technology = Technology::IdentifierFromName(type); local 2544 RequestScan(Device::ScanType scan_type, const string& technology, Error* error) argument [all...] |
H A D | metrics.h | 896 Technology::Identifier technology, 905 Technology::Identifier technology, 917 Technology::Identifier technology); 921 Technology::Identifier technology); 1036 // Notifies this object about the presence of given technology type device. 1142 Technology::Identifier technology; member in struct:shill::Metrics::DeviceMetrics 1179 // technology type.
|
/system/connectivity/shill/ethernet/ |
H A D | ethernet_service.cc | 77 Technology::Identifier technology, 79 : Service(control_interface, dispatcher, metrics, manager, technology), 104 "%s_%s", Technology::NameFromIdentifier(technology()).c_str(), 73 EthernetService(ControlInterface* control_interface, EventDispatcher* dispatcher, Metrics* metrics, Manager* manager, Technology::Identifier technology, base::WeakPtr<Ethernet> ethernet) argument
|
/system/connectivity/shill/cellular/ |
H A D | cellular_capability_gsm_unittest.cc | 243 void SetAccessTechnology(uint32_t technology) { argument 244 capability_->access_technology_ = technology;
|
H A D | cellular_service.cc | 447 void CellularService::SetNetworkTechnology(const string& technology) { argument 448 if (technology == network_technology_) { 451 network_technology_ = technology; 453 technology);
|
/system/connectivity/shill/dbus/ |
H A D | chromeos_manager_dbus_adaptor.cc | 225 const string& technology) { // NOLINT 226 SLOG(this, 2) << __func__ << ": " << technology; local 228 manager_->RequestScan(Device::kFullScan, technology, &e); 224 RequestScan(brillo::ErrorPtr* error, const string& technology) argument
|