Lines Matching full:properties

84     # EAP related properties.
91 # OpenVPN related properties.
106 # L2TP VPN related properties.
241 """Convert service properties to dbus types.
243 @param in_dict: Dictionary containing service properties.
244 @return DBus variant dictionary containing service 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
363 @param properties dictionary of service property:value pairs.
366 config = properties.copy()
372 """Configure a service with given properties.
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
562 """Find a shill object with the specified type and properties.
564 Return the first shill object of |object_type| whose properties match
565 all that of |properties|.
570 @param properties dict of strings understood by shill to describe
585 for name, value in properties.iteritems():
595 # the manager properties and the call to get the service
596 # properties. This causes failed method invocations.
601 def find_matching_service(self, properties): argument
602 """Find a service object that matches the given properties.
608 @param properties dict of strings understood by shill to describe
612 return self.find_object('Service', properties)