Lines Matching refs:properties
152 brillo::VariantDictionary properties; in GetDefaultServicePath() local
157 TEST_AND_RETURN_FALSE(manager_proxy->GetProperties(&properties, &error)); in GetDefaultServicePath()
160 properties.find(shill::kDefaultServiceProperty); in GetDefaultServicePath()
161 if (prop_default_service == properties.end()) in GetDefaultServicePath()
176 brillo::VariantDictionary properties; in GetServicePathProperties() local
178 TEST_AND_RETURN_FALSE(service->GetProperties(&properties, &error)); in GetServicePathProperties()
181 const auto& prop_tethering = properties.find(shill::kTetheringProperty); in GetServicePathProperties()
182 if (prop_tethering == properties.end()) { in GetServicePathProperties()
193 const auto& prop_type = properties.find(shill::kTypeProperty); in GetServicePathProperties()
194 if (prop_type == properties.end()) { in GetServicePathProperties()
203 properties.find(shill::kPhysicalTechnologyProperty); in GetServicePathProperties()
204 if (prop_physical == properties.end()) { in GetServicePathProperties()