Home | History | Annotate | Download | only in networking

Lines Matching refs:shill

5 """A collection of context managers for working with shill objects."""
17 SHILL_START_LOCK_PATH = '/run/lock/shill-start.lock'
20 """An error raised by a context managers dealing with shill objects."""
25 """A context manager for allowing only specified technologies in shill.
42 shill = shill_proxy.ShillProxy.get_proxy()
46 enabled = shill.get_dbus_property(
47 shill.manager,
53 prohibited_csv = shill.get_dbus_property(
54 shill.manager,
73 shill.set_dbus_property(
74 shill.manager,
82 shill = shill_proxy.ShillProxy.get_proxy()
85 shill.set_dbus_property(
86 shill.manager,
93 shill.manager.EnableTechnology(technology)
131 # is the same so that shill will retain the AutoConnect property, else
132 # shill may override it.
147 shill = shill_proxy.ShillProxy.get_proxy()
148 manager_properties = shill.manager.GetProperties(utf8_strings=True)
188 """A context for executing code which requires shill to be stopped.
190 This context stops shill on entry to the context, and starts shill
192 shill will be not restarted by recover_duts, while this context is
220 raise error.TestError('Shill start lock held by %s' % lock_holder)
224 utils.stop_service('shill')
226 utils.start_service('shill')