Lines Matching refs:properties
275 properties = interface.GetProperties(utf8_strings=True)
276 if property_key in properties:
277 return ShillProxy.dbus2primitive(properties[property_key])
291 properties = interface.GetProperties(utf8_strings=True)
292 if property_key not in properties:
296 dbus_class = properties[property_key].__class__
359 def configure_service_by_guid(self, guid, properties={}): argument
366 config = properties.copy()
443 properties = self.dbus2primitive(
445 last_value = properties.get(property_name, '(no value found)')
489 properties = self.manager.GetProperties(utf8_strings=True)
492 properties[self.MANAGER_PROPERTY_ACTIVE_PROFILE])
510 properties = self.manager.GetProperties(utf8_strings=True)
512 for path in properties[self.MANAGER_PROPERTY_DEVICES]]
517 properties = self.manager.GetProperties(utf8_strings=True)
519 for path in properties[self.MANAGER_PROPERTY_PROFILES]]
544 properties = self.manager.GetProperties(utf8_strings=True)
545 all_services = properties.get(self.MANAGER_PROPERTY_ALL_SERVICES,
553 properties = service.GetProperties(utf8_strings=True)
554 device_path = properties.get(self.SERVICE_PROPERTY_DEVICE, None)
561 def find_object(self, object_type, properties): argument
585 for name, value in properties.iteritems():
601 def find_matching_service(self, properties): argument
612 return self.find_object('Service', properties)