/packages/modules/Bluetooth/framework/java/android/bluetooth/ |
D | BluetoothManager.java | 193 Context context, BluetoothGattServerCallback callback, boolean eattSupport) { in openGattServer() argument 194 return (openGattServer(context, callback, BluetoothDevice.TRANSPORT_AUTO, eattSupport)); in openGattServer() 239 boolean eattSupport) { in openGattServer() argument 253 Boolean regStatus = mGattServer.registerCallback(callback, eattSupport); in openGattServer()
|
D | BluetoothGattServer.java | 621 BluetoothGattServerCallback callback, boolean eattSupport) { in registerCallback() argument 641 eattSupport, in registerCallback()
|
D | BluetoothGatt.java | 1105 BluetoothGattCallback callback, Handler handler, boolean eattSupport) { in registerApp() argument 1116 new ParcelUuid(uuid), mBluetoothGattCallback, eattSupport, mAttributionSource); in registerApp()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/ |
D | GattNativeInterface.java | 286 long appUuidLsb, long appUuidMsb, boolean eattSupport); in gattClientRegisterAppNative() argument 349 long appUuidLsb, long appUuidMsb, boolean eattSupport); in gattServerRegisterAppNative() argument 430 public void gattClientRegisterApp(long appUuidLsb, long appUuidMsb, boolean eattSupport) { in gattClientRegisterApp() argument 431 gattClientRegisterAppNative(appUuidLsb, appUuidMsb, eattSupport); in gattClientRegisterApp() 584 public void gattServerRegisterApp(long appUuidLsb, long appUuidMsb, boolean eattSupport) { in gattServerRegisterApp() argument 585 gattServerRegisterAppNative(appUuidLsb, appUuidMsb, eattSupport); in gattServerRegisterApp()
|
D | GattService.java | 443 boolean eattSupport, in registerClient() argument 449 service.registerClient(uuid.getUuid(), callback, eattSupport, attributionSource); in registerClient() local 858 boolean eattSupport, in registerServer() argument 864 service.registerServer(uuid.getUuid(), callback, eattSupport, attributionSource); in registerServer() local
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/gatt/ |
D | GattServiceBinderTest.java | 107 boolean eattSupport = true; in registerClient() 109 mBinder.registerClient(new ParcelUuid(uuid), callback, eattSupport, mAttributionSource); in registerClient() 111 verify(mService).registerClient(uuid, callback, eattSupport, mAttributionSource); in registerClient() 480 boolean eattSupport = true; in registerServer() 482 mBinder.registerServer(new ParcelUuid(uuid), callback, eattSupport, mAttributionSource); in registerServer() 484 verify(mService).registerServer(uuid, callback, eattSupport, mAttributionSource); in registerServer()
|
D | GattServiceTest.java | 359 boolean eattSupport = true; in registerClient() 361 mService.registerClient(uuid, callback, eattSupport, mAttributionSource); in registerClient() 364 uuid.getLeastSignificantBits(), uuid.getMostSignificantBits(), eattSupport); in registerClient() local
|