Lines Matching refs:properties
144 brillo::VariantDictionary properties; in GetDefaultServicePath() local
149 TEST_AND_RETURN_FALSE(manager_proxy->GetProperties(&properties, &error)); in GetDefaultServicePath()
152 properties.find(shill::kDefaultServiceProperty); in GetDefaultServicePath()
153 if (prop_default_service == properties.end()) in GetDefaultServicePath()
168 brillo::VariantDictionary properties; in GetServicePathProperties() local
170 TEST_AND_RETURN_FALSE(service->GetProperties(&properties, &error)); in GetServicePathProperties()
173 const auto& prop_tethering = properties.find(shill::kTetheringProperty); in GetServicePathProperties()
174 if (prop_tethering == properties.end()) { in GetServicePathProperties()
185 const auto& prop_type = properties.find(shill::kTypeProperty); in GetServicePathProperties()
186 if (prop_type == properties.end()) { in GetServicePathProperties()
195 properties.find(shill::kPhysicalTechnologyProperty); in GetServicePathProperties()
196 if (prop_physical == properties.end()) { in GetServicePathProperties()