/system/connectivity/shill/ |
D | technology.h | 31 enum Identifier { enum 52 static Identifier IdentifierFromName(const std::string& name); 57 static std::string NameFromIdentifier(Identifier id); 63 static Identifier IdentifierFromStorageGroup(const std::string& group); 72 std::vector<Identifier>* technologies_vector, 77 static bool IsPrimaryConnectivityTechnology(Identifier technology);
|
D | profile.h | 58 struct Identifier { struct 59 Identifier() {} in Identifier() function 60 explicit Identifier(const std::string& i) : identifier(i) {} in Identifier() argument 61 Identifier(const std::string& u, const std::string& i) in Identifier() argument 77 const Identifier& name, argument 173 static bool ParseIdentifier(const std::string& raw, Identifier* parsed); 180 static std::string IdentifierToString(const Identifier& name); 184 static std::vector<Identifier> LoadUserProfileList( 193 virtual bool MatchesIdentifier(const Identifier& name) const; 219 const Identifier& profile_name); [all …]
|
D | technology.cc | 46 Technology::Identifier Technology::IdentifierFromName(const string& name) { in IdentifierFromName() 73 string Technology::NameFromIdentifier(Technology::Identifier id) { in NameFromIdentifier() 100 Technology::Identifier Technology::IdentifierFromStorageGroup( in IdentifierFromStorageGroup() 113 vector<Identifier>* technologies_vector, in GetTechnologyVectorFromString() 119 set<Technology::Identifier> seen; in GetTechnologyVectorFromString() 131 Technology::Identifier identifier = Technology::IdentifierFromName(name); in GetTechnologyVectorFromString() 152 bool Technology::IsPrimaryConnectivityTechnology(Identifier technology) { in IsPrimaryConnectivityTechnology()
|
D | mock_metrics.h | 73 void(Technology::Identifier technology_id, int reason)); 75 void(Technology::Identifier technology_id, int result)); 80 void(Technology::Identifier technology_id, 83 void(Technology::Identifier technology_id, bool status)); 85 void(Technology::Identifier technology_id, bool status)); 87 void(Technology::Identifier technology_id, int signal_strength));
|
D | profile_unittest.cc | 53 Profile::Identifier id("rather", "irrelevant"); in ProfileTest() 70 bool ProfileInitStorage(const Profile::Identifier& id, in ProfileInitStorage() 161 Profile::Identifier identifier; in TEST_F() 191 Profile::Identifier identifier; in TEST_F() 203 Profile::Identifier id(kIdentifier); in TEST_F() 217 Profile::Identifier id(kIdentifier); in TEST_F() 339 vector<Profile::Identifier> identifiers = in TEST_F() 372 Profile::Identifier id0(kUser0, kIdentifier0); in TEST_F() 381 Profile::Identifier id1(kUser1, kIdentifier1); in TEST_F() 389 Profile::Identifier id2("", kIdentifier2); in TEST_F() [all …]
|
D | profile.cc | 64 const Identifier& name, in Profile() 281 bool Profile::ParseIdentifier(const string& raw, Identifier* parsed) { in ParseIdentifier() 311 string Profile::IdentifierToString(const Identifier& name) { in IdentifierToString() 323 vector<Profile::Identifier> Profile::LoadUserProfileList(const FilePath& path) { in LoadUserProfileList() 324 vector<Identifier> profile_identifiers; in LoadUserProfileList() 345 Identifier identifier; in LoadUserProfileList() 363 Identifier& id = profile->name_; in SaveUserProfileList() 376 bool Profile::MatchesIdentifier(const Identifier& name) const { in MatchesIdentifier() 427 const Identifier& profile_name) { in GetFinalStoragePath()
|
D | mock_profile.cc | 32 : Profile(control, metrics, manager, Identifier("mock"), base::FilePath(), in MockProfile() 40 : Profile(control, metrics, manager, Identifier(identifier), in MockProfile()
|
D | mock_manager.h | 79 MOCK_METHOD1(IsPortalDetectionEnabled, bool(Technology::Identifier tech)); 86 bool(Technology::Identifier tech)); 88 bool(Technology::Identifier tech)); 90 bool(Technology::Identifier tech)); 98 DeviceRefPtr(Technology::Identifier technology));
|
D | metrics.h | 831 Technology::Identifier technology_id); 896 Technology::Identifier technology, 905 Technology::Identifier technology, 917 Technology::Identifier technology); 921 Technology::Identifier technology); 1014 virtual void NotifyFallbackDNSTestResult(Technology::Identifier technology_id, 1020 Technology::Identifier technology_id, int reason); 1030 Technology::Identifier technology_id, NetworkConnectionIPType type); 1034 Technology::Identifier technology_id, bool status); 1037 virtual void NotifyDevicePresenceStatus(Technology::Identifier technology_id, [all …]
|
D | service_sorter.h | 37 const std::vector<Technology::Identifier>& tech_order) in ServiceSorter() 50 const std::vector<Technology::Identifier>& technology_order_;
|
D | manager.h | 171 FilterByTechnology(Technology::Identifier tech) const; 315 virtual bool IsPortalDetectionEnabled(Technology::Identifier tech); 331 virtual bool IsTechnologyConnected(Technology::Identifier technology) const; 335 Technology::Identifier technology) const; 342 Technology::Identifier technology) const; 345 virtual bool IsTechnologyProhibited(Technology::Identifier technology) const; 352 Technology::Identifier technology) const; 667 Technology::Identifier tech) const; 676 void OnTechnologyProhibited(Technology::Identifier technology, 713 bool HasProfile(const Profile::Identifier& ident); [all …]
|
D | technology_unittest.cc | 77 vector<Technology::Identifier> technologies; in TEST_F() 106 vector<Technology::Identifier> technologies; in TEST_F() 127 vector<Technology::Identifier> technologies; in TEST_F()
|
D | manager.cc | 356 vector<Profile::Identifier> identifiers = in InitializeProfiles() 362 Profile::Identifier default_profile_id; in InitializeProfiles() 376 Profile::Identifier ident; in CreateProfile() 421 bool Manager::HasProfile(const Profile::Identifier& ident) { in HasProfile() 431 const Profile::Identifier& ident, string* path, Error* error) { in PushProfileInternal() 514 Profile::Identifier ident; in PushProfile() 528 Profile::Identifier ident; in InsertUserProfile() 592 Profile::Identifier ident; in PopProfile() 614 Profile::Identifier ident; in PopAnyProfile() 631 Profile::Identifier ident; in RemoveProfile() [all …]
|
D | metrics.cc | 691 Technology::Identifier technology = (service) ? service->technology() : in NotifyDefaultServiceChanged() 762 Technology::Identifier technology_id) { in GetFullMetricName() 770 Technology::Identifier technology = service.technology(); in NotifyServiceDisconnect() 783 Technology::Identifier technology = service.technology(); in NotifySignalAtDisconnect() 935 Technology::Identifier technology, in NotifyLinkMonitorFailure() 973 Technology::Identifier technology, in NotifyLinkMonitorResponseTimeSampleAdded() 1022 Technology::Identifier technology) { in RegisterDevice() 1087 Technology::Identifier technology) { in IsDeviceRegistered() 1392 void Metrics::NotifyFallbackDNSTestResult(Technology::Identifier technology_id, in NotifyFallbackDNSTestResult() 1401 void Metrics::NotifyNetworkProblemDetected(Technology::Identifier technology_id, in NotifyNetworkProblemDetected() [all …]
|
D | connection.h | 86 Technology::Identifier technology_, 139 virtual Technology::Identifier technology() const { return technology_; } in technology() 207 Technology::Identifier technology_;
|
D | mock_virtual_device.cc | 27 Technology::Identifier technology) in MockVirtualDevice()
|
D | mock_virtual_device.h | 36 Technology::Identifier technology);
|
D | mock_device.cc | 50 DefaultValue<Technology::Identifier>::Set(Technology::kUnknown); in MockDevice()
|
D | device_info.h | 198 Technology::Identifier technology; 239 Technology::Identifier technology); 260 virtual Technology::Identifier GetDeviceTechnology(
|
D | ephemeral_profile.cc | 45 : Profile(control_interface, metrics, manager, Identifier(), in EphemeralProfile()
|
D | device_stub.h | 49 Technology::Identifier technology) in DeviceStub()
|
D | virtual_device.h | 45 Technology::Identifier technology);
|
D | mock_eap_credentials.h | 39 void(Metrics* metrics, Technology::Identifier technology));
|
/system/connectivity/shill/wimax/ |
D | mock_wimax_network_proxy.h | 36 MOCK_METHOD1(Identifier, uint32_t(Error* error));
|
D | wimax_network_proxy_interface.h | 49 virtual uint32_t Identifier(Error* error) = 0;
|