HomeSort by relevance Sort by last modified time
    Searched refs:Technology (Results 26 - 50 of 95) sorted by null

12 3 4

  /system/connectivity/shill/
technology.h 27 // A class that provides functions for converting between technology names
29 class Technology {
50 // Returns the technology identifier for a technology name in |name|,
51 // or Technology::kUnknown if the technology name is unknown.
54 // Returns the technology name for a technology identifier in |id|,
55 // or Technology::kUnknownName ("Unknown") if the technology identifie
    [all...]
virtual_device.h 27 #include "shill/technology.h"
45 Technology::Identifier technology);
metrics.h 831 Technology::Identifier technology_id);
1142 Technology::Identifier technology; member in struct:shill::Metrics::DeviceMetrics
    [all...]
metrics.cc 435 last_default_technology_(Technology::kUnknown),
691 Technology::Identifier technology = (service) ? service->technology() :
692 Technology::kUnknown;
693 if (technology != last_default_technology_) {
694 if (last_default_technology_ != Technology::kUnknown) {
704 last_default_technology_ = technology;
746 Technology::NameFromIdentifier(
747 service.technology()).c_str()
    [all...]
connection.h 31 #include "shill/technology.h"
86 Technology::Identifier technology_,
139 virtual Technology::Identifier technology() const { return technology_; } function in class:shill::Connection
207 Technology::Identifier technology_;
manager.cc 883 Technology::Identifier technology = local
884 Technology::IdentifierFromStorageGroup(entry_name);
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
1997 Technology::Identifier technology = service->technology(); local
2297 Technology::Identifier technology = Technology::IdentifierFromName(type); local
2388 Technology::Identifier technology = Technology::IdentifierFromName(type); local
    [all...]
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);
260 virtual Technology::Identifier GetDeviceTechnology
    [all...]
mock_connection.h 49 MOCK_CONST_METHOD0(technology, Technology::Identifier());
virtual_device.cc 44 Technology::Identifier technology)
46 kHardwareAddressEmpty, interface_index, technology) {}
manager_unittest.cc 183 // Update the manager's map from technology to provider.
201 Technology::Identifier tech) {
488 const std::vector<Technology::Identifier>& GetTechnologyOrder() {
556 ON_CALL(*mock_devices_[0].get(), technology())
557 .WillByDefault(Return(Technology::kEthernet));
558 ON_CALL(*mock_devices_[1].get(), technology())
559 .WillByDefault(Return(Technology::kWifi));
567 EXPECT_FALSE(IsDeviceRegistered(mock_devices_[0], Technology::kEthernet));
575 EXPECT_TRUE(IsDeviceRegistered(mock_devices_[1], Technology::kWifi));
579 ON_CALL(*mock_devices_[0].get(), technology())
    [all...]
metrics_unittest.cc 265 EXPECT_CALL(*eap_, OutputConnectionMetrics(&metrics_, Technology::kWifi));
334 EXPECT_CALL(*service_, technology()).
335 WillOnce(Return(Technology::kEthernet));
336 EXPECT_CALL(*wifi_service, technology()).
337 WillOnce(Return(Technology::kWifi));
369 EXPECT_CALL(*service_, technology()).
370 WillRepeatedly(Return(Technology::kWifi));
452 metrics_.RegisterDevice(kInterfaceIndex, Technology::kCellular);
465 metrics_.RegisterDevice(kInterfaceIndex, Technology::kCellular);
478 metrics_.RegisterDevice(kInterfaceIndex, Technology::kCellular)
    [all...]
mock_device.h 68 MOCK_CONST_METHOD0(technology, Technology::Identifier());
manager.h 171 FilterByTechnology(Technology::Identifier tech) const;
210 const std::string& technology, Error* error);
314 // Return whether a technology is marked as enabled for portal detection.
315 virtual bool IsPortalDetectionEnabled(Technology::Identifier tech);
330 // Return whether a Technology has any connected Services.
331 virtual bool IsTechnologyConnected(Technology::Identifier technology) const;
333 // Return whether a technology is enabled for link monitoring.
335 Technology::Identifier technology) const
    [all...]
mock_service.h 28 #include "shill/technology.h"
84 MOCK_CONST_METHOD0(technology, Technology::Identifier());
property_store_unittest.h 193 const std::vector<Technology::Identifier>& default_technology_order() {
214 const std::vector<Technology::Identifier> default_technology_order_;
shill_main.cc 38 #include "shill/technology.h"
61 static const char kTechnologyOrder[] = "default-technology-order";
97 " --default-technology-order=technology1,technology2\n"
187 vector<shill::Technology::Identifier> test_order_vector;
188 if (shill::Technology::GetTechnologyVectorFromString(
192 LOG(ERROR) << "Invalid default technology order: [" << order_flag
eap_credentials.h 26 #include "shill/technology.h"
82 // Output metrics about this EAP connection to |metrics| with technology
83 // |technology|.
85 Technology::Identifier technology) const;
  /system/connectivity/shill/ethernet/
ethernet_service.h 65 // constructor does and sets the reported technology to |technology|. It is
67 // EthernetService behavior, while still retaining their own technology
73 Technology::Identifier technology,
mock_ethernet_service.h 51 MOCK_CONST_METHOD0(technology, Technology::Identifier());
ethernet_unittest.cc 118 ON_CALL(*mock_service_, technology())
119 .WillByDefault(Return(Technology::kEthernet));
560 MATCHER_P(TechnologyEq, technology, "") {
561 return arg->technology() == technology;
567 EXPECT_CALL(*mock_service_, technology())
568 .WillRepeatedly(Return(Technology::kEthernet));
573 EXPECT_CALL(manager_, RegisterService(TechnologyEq(Technology::kPPPoE)));
574 EXPECT_CALL(manager_, DeregisterService(TechnologyEq(Technology::kPPPoE)));
577 const vector<pair<bool, Technology::Identifier>> transitions =
    [all...]
ethernet_eap_service_unittest.cc 34 #include "shill/technology.h"
67 EXPECT_EQ(Technology::kEthernetEap, service_->technology());
ethernet.cc 83 Technology::kEthernet),
485 if (enable && service_->technology() != Technology::kPPPoE) {
487 } else if (!enable && service_->technology() == Technology::kPPPoE) {
507 return service_->technology() == Technology::kPPPoE;
  /system/connectivity/shill/test-rpc-proxy/
proxy_dbus_client.h 45 enum Technology {
57 void SetLogging(Technology tech);
  /system/connectivity/shill/vpn/
vpn_service.cc 33 #include "shill/technology.h"
58 : Service(control, dispatcher, metrics, manager, Technology::kVPN),
258 return Technology::NameFromIdentifier(conn->technology());
  /external/autotest/client/cros/cellular/
labconfig.py 63 '--technology', dest='technology', default='all',
135 technologies_list = self.options.technology.split(',')
141 enums = [getattr(cellular.Technology, t, None)
146 'Could not understand a technology in %s' % technologies_list)

Completed in 729 milliseconds

12 3 4