Searched defs:mGattServer (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Test/connectivity/PMC/src/com/android/pmc/
H A DGattPMCReceiver.java34 private final GattServer mGattServer; field in class:GattPMCReceiver
47 mGattServer = new GattServer(context);
77 mGattServer.startGattServer();
H A DGattServer.java49 private BluetoothGattServer mGattServer; field in class:GattServer
114 mGattServer = mBluetoothManager.openGattServer(mContext, mGattServerCallBack);
116 mGattServer.addService(mGattService);
147 mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_SUCCESS, offset, value);
167 mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_SUCCESS, 0, null);
/packages/services/Car/TrustAgent/src/com/android/car/trust/comms/
H A DSimpleBleServer.java72 protected BluetoothGattServer mGattServer; field in class:SimpleBleServer
97 mGattServer = btManager.openGattServer(this, mGattServerCallback);
98 if (mGattServer == null) {
106 mGattServer.addService(service);
134 if (mGattServer != null) {
135 mGattServer.clearServices();
137 for (BluetoothDevice d : mGattServer.getConnectedDevices()) {
138 mGattServer.cancelConnection(d);
143 mGattServer.close();
230 mGattServer
[all...]

Completed in 89 milliseconds