Searched refs:remote_device_dbus (Results 1 – 1 of 1) sorted by relevance
/packages/modules/Bluetooth/floss/pandora/floss/ |
D | adapter_client.py | 160 def parse_dbus_device(remote_device_dbus): argument 169 if 'address' in remote_device_dbus and 'name' in remote_device_dbus: 170 return True, (str(remote_device_dbus['address']), str(remote_device_dbus['name'])) 224 def OnDeviceFound(self, remote_device_dbus): argument 226 parsed, remote_device = FlossAdapterClient.parse_dbus_device(remote_device_dbus) 228 logging.debug('OnDeviceFound parse error: {}'.format(remote_device_dbus)) 239 def OnSspRequest(self, remote_device_dbus, class_of_device, variant, passkey): argument 241 parsed, remote_device = FlossAdapterClient.parse_dbus_device(remote_device_dbus) 243 logging.error('OnSspRequest parse error: {}'.format(remote_device_dbus)) 249 def OnPinRequest(self, remote_device_dbus, cod, min_16_digit): argument [all …]
|