Lines Matching refs:shill
41 shill = shill_proxy.ShillProxy()
43 active_profile = shill.get_active_profile()
45 active_name = shill.dbus2primitive(
46 properties[shill.PROFILE_PROPERTY_NAME])
51 shill.manager.PopProfile(active_name)
52 shill.manager.RemoveProfile(active_name)
67 shill = shill_proxy.ShillProxy()
68 properties = shill.dbus2primitive(
69 shill.manager.GetProperties(utf8_strings=True))
70 active_profile = shill.get_active_profile()
71 for path in properties[shill.MANAGER_PROPERTY_PROFILES]:
76 profile = shill.get_dbus_object(shill.DBUS_TYPE_PROFILE, path)
86 shill = shill_proxy.ShillProxy()
87 active_profile = shill.get_active_profile()
88 for profile in shill.get_profiles():
90 properties = shill.dbus2primitive(
92 if not shill.PROFILE_PROPERTY_ENTRIES in properties:
94 for ident in properties[shill.PROFILE_PROPERTY_ENTRIES]:
96 pprint.pprint(shill.dbus2primitive(profile.GetEntry(ident)),
104 shill = shill_proxy.ShillProxy()
105 active_profile = shill.get_active_profile()
106 for profile in shill.get_profiles():
108 properties = shill.dbus2primitive(
121 shill = shill_proxy.ShillProxy()
136 shill.manager.PopAnyProfile()
147 shill.manager.PopProfile(name)
152 path = shill.manager.CreateProfile(name)
157 path = shill.manager.PushProfile(name)
162 shill.manager.RemoveProfile(name)