Home
last modified time | relevance | path

Searched refs:IsLoadableFrom (Results 1 – 7 of 7) sorted by relevance

/system/connectivity/shill/
Dprofile.cc227 return service->IsLoadableFrom(*storage_.get()); in ContainsService()
Dservice.h276 virtual bool IsLoadableFrom(const StoreInterface& storage) const;
Dservice.cc510 return IsLoadableFrom(storage) ? GetStorageIdentifier() : ""; in GetLoadableStorageIdentifier()
513 bool Service::IsLoadableFrom(const StoreInterface& storage) const { in IsLoadableFrom() function in shill::Service
Dservice_unittest.cc409 TEST_F(ServiceTest, IsLoadableFrom) { in TEST_F() argument
414 EXPECT_FALSE(service_->IsLoadableFrom(storage)); in TEST_F()
415 EXPECT_TRUE(service_->IsLoadableFrom(storage)); in TEST_F()
/system/connectivity/shill/wifi/
Dwifi_service.h119 bool IsLoadableFrom(const StoreInterface& storage) const override;
Dwifi_service.cc350 bool WiFiService::IsLoadableFrom(const StoreInterface& storage) const { in IsLoadableFrom() function in shill::WiFiService
Dwifi_service_unittest.cc292 bool is_loadable = wifi_service->IsLoadableFrom(mock_store); in TestLoadMapping()