Lines Matching +full:dbus +full:- +full:interface
3 import dbus
14 'system': dbus.SystemBus,
38 handler.send_header('Content-Type', 'application/json')
57 'application/octet-stream')
65 handler.send_header('Content-Type',
66 self.content_type + '; charset=utf-8')
82 handler.send_header('Content-Type', 'application/json')
106 except dbus.DBusException:
121 iface = dbus.Interface(obj, 'org.freedesktop.DBus.Introspectable')
126 if node.tag == 'interface':
137 iface = dbus.Interface(obj, 'org.freedesktop.DBus.Introspectable')
142 if (node.tag == 'interface' and
148 raise DBusRestException("Interface Not Found", 404)
184 iface = dbus.Interface(obj, 'org.freedesktop.DBus.Properties')
187 # change dbus.boolean to actual bool so it doesn't get converted
191 if isinstance(val, dbus.Boolean):
193 except dbus.DBusException:
200 'interface': interface_name,
207 iface = dbus.Interface(obj, 'org.freedesktop.DBus.Properties')
210 except dbus.DBusException:
217 'interface': interface_name,
243 # interface name
285 iface = dbus.Interface(obj, interface_name)
289 'interface': interface_name,
328 # interface name
357 length = int(self.headers.getheader('content-length'))