Searched defs:gatt (Results 1 - 20 of 20) sorted by relevance

/packages/apps/Bluetooth/tests/src/com/android/bluetooth/gatt/
H A DGattServiceTest.java2 package com.android.bluetooth.gatt;
7 import com.android.bluetooth.gatt.GattService;
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DCallbackInfo.java16 package com.android.bluetooth.gatt;
H A DGattServiceConfig.java17 package com.android.bluetooth.gatt;
H A DAdvertiseHelper.java17 package com.android.bluetooth.gatt;
H A DScanClient.java17 package com.android.bluetooth.gatt;
H A DGattDbElement.java17 package com.android.bluetooth.gatt;
22 * Helper class for passing gatt db elements between java and JNI, equal to
H A DGattDebugUtils.java17 package com.android.bluetooth.gatt;
69 * import com.android.bluetooth.gatt.GattService;
H A DAdvtFilterOnFoundOnLostInfo.java17 package com.android.bluetooth.gatt;
H A DAppScanStats.java16 package com.android.bluetooth.gatt;
H A DContextMap.java16 package com.android.bluetooth.gatt;
H A DFilterParams.java17 package com.android.bluetooth.gatt;
H A DHandleMap.java16 package com.android.bluetooth.gatt;
H A DPeriodicScanManager.java17 package com.android.bluetooth.gatt;
H A DScanFilterQueue.java17 package com.android.bluetooth.gatt;
H A DAdvertiseManager.java17 package com.android.bluetooth.gatt;
H A DScanManager.java17 package com.android.bluetooth.gatt;
77 "com.android.bluetooth.gatt.REFRESH_BATCHED_SCAN";
H A DGattService.java17 package com.android.bluetooth.gatt;
/packages/services/Car/TrustAgent/src/com/android/car/trust/comms/
H A DSimpleBleClient.java54 void onCharacteristicChanged(BluetoothGatt gatt, argument
307 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
308 super.onConnectionStateChange(gatt, status, newState);
316 callback.onDeviceConnected(gatt.getDevice());
331 public void onServicesDiscovered(BluetoothGatt gatt, int status) {
332 super.onServicesDiscovered(gatt, status);
337 List<BluetoothGattService> services = gatt.getServices();
354 public void onCharacteristicWrite(BluetoothGatt gatt,
363 public void onCharacteristicRead(BluetoothGatt gatt,
372 public void onCharacteristicChanged(BluetoothGatt gatt,
[all...]
/packages/apps/Test/connectivity/PMC/src/com/android/pmc/
H A DGattClientListener.java184 public void onConnectionStateChange(BluetoothGatt gatt, int status, argument
189 + gatt.getDevice().getAddress() + " status " + status);
195 + gatt.getDevice().getAddress() + " status " + status);
205 + gatt.getDevice().getAddress() + " status " + status);
208 + gatt.getDevice().getAddress() + " status " + status);
213 public void onServicesDiscovered(BluetoothGatt gatt, int status) { argument
219 public void onCharacteristicRead(BluetoothGatt gatt, argument
225 public void onCharacteristicWrite(BluetoothGatt gatt, argument
230 writeCharacteristic(gatt, (int) (timeElapse / MILLSEC));
235 public void onCharacteristicChanged(BluetoothGatt gatt, argument
241 onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) argument
247 onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) argument
253 onReliableWriteCompleted(BluetoothGatt gatt, int status) argument
258 onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) argument
263 onMtuChanged(BluetoothGatt gatt, int mtu, int status) argument
277 writeCharacteristic(BluetoothGatt gatt, int value) argument
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
H A DBluetoothAccessoryFragment.java243 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) { argument
248 gatt.discoverServices();
253 public void onServicesDiscovered(BluetoothGatt gatt, int status) { argument
256 Log.e(TAG, "Service discovery failure on " + gatt);
261 final BluetoothGattService battService = gatt.getService(GATT_BATTERY_SERVICE_UUID);
278 gatt.readCharacteristic(battLevel);
282 public void onCharacteristicRead(BluetoothGatt gatt, argument
286 Log.e(TAG, "Read characteristic failure on " + gatt + " " + characteristic);

Completed in 295 milliseconds