HomeSort by relevance Sort by last modified time
    Searched refs:gatt (Results 1 - 25 of 30) sorted by null

1 2

  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCallback.java 25 * Callback indicating when GATT client has connected/disconnected to/from a remote
26 * GATT server.
28 * @param gatt GATT client
35 public void onConnectionStateChange(BluetoothGatt gatt, int status,
43 * @param gatt GATT client invoked {@link BluetoothGatt#discoverServices}
47 public void onServicesDiscovered(BluetoothGatt gatt, int status) {
53 * @param gatt GATT client invoked {@link BluetoothGatt#readCharacteristic
    [all...]
BluetoothDevice.java 542 * No preferrence of physical transport for GATT connections to remote dual-mode devices
548 * Prefer BR/EDR transport for GATT connections to remote dual-mode devices
554 * Prefer LE transport for GATT connections to remote dual-mode devices
1404 BluetoothGatt gatt = new BluetoothGatt(context, iGatt, this, transport); local
    [all...]
BluetoothAdapter.java 1392 BluetoothGatt gatt = (BluetoothGatt)proxy; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattServiceConfig.java 17 package com.android.bluetooth.gatt;
CallbackInfo.java 16 package com.android.bluetooth.gatt;
AdvertiseClient.java 17 package com.android.bluetooth.gatt;
ScanClient.java 17 package com.android.bluetooth.gatt;
SearchQueue.java 17 package com.android.bluetooth.gatt;
ServiceDeclaration.java 16 package com.android.bluetooth.gatt;
ContextMap.java 16 package com.android.bluetooth.gatt;
32 * Helper class that keeps track of registered GATT applications.
33 * This class manages application callbacks and keeps track of GATT connections.
296 b.append( "-------------- GATT Context Map ----------------");
GattDebugUtils.java 17 package com.android.bluetooth.gatt;
25 * Helper class containing useful tools for GATT service debugging.
73 * and <component> identifies the GATT service.
76 * import com.android.bluetooth.gatt.GattService;
180 b.append( "------------ GATT TEST ACTIONS ----------------");
HandleMap.java 16 package com.android.bluetooth.gatt;
201 b.append( "-------------- GATT Handle Map -----------------");
ScanFilterQueue.java 17 package com.android.bluetooth.gatt;
AdvertiseManager.java 17 package com.android.bluetooth.gatt;
ScanManager.java 17 package com.android.bluetooth.gatt;
67 "com.android.bluetooth.gatt.REFRESH_BATCHED_SCAN";
    [all...]
GattService.java 17 package com.android.bluetooth.gatt;
57 * Provides Bluetooth Gatt profile, as a service in
    [all...]
  /external/bluetooth/bluedroid/bta/
Android.mk 20 ./gatt/bta_gattc_api.c \
21 ./gatt/bta_gatts_act.c \
22 ./gatt/bta_gatts_main.c \
23 ./gatt/bta_gattc_utils.c \
24 ./gatt/bta_gattc_ci.c \
25 ./gatt/bta_gatts_api.c \
26 ./gatt/bta_gattc_main.c \
27 ./gatt/bta_gattc_act.c \
28 ./gatt/bta_gattc_cache.c \
29 ./gatt/bta_gatts_utils.c
    [all...]
  /external/bluetooth/bluedroid/stack/
Android.mk 12 $(LOCAL_PATH)/gatt \
92 ./gatt/gatt_sr.c \
93 ./gatt/gatt_cl.c \
94 ./gatt/gatt_api.c \
95 ./gatt/gatt_auth.c \
96 ./gatt/gatt_utils.c \
97 ./gatt/gatt_main.c \
98 ./gatt/att_protocol.c \
99 ./gatt/gatt_attr.c \
100 ./gatt/gatt_db.c
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleClientService.java 315 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
327 public void onServicesDiscovered(BluetoothGatt gatt, int status) {
335 public void onCharacteristicRead(BluetoothGatt gatt,
344 public void onCharacteristicWrite(BluetoothGatt gatt,
356 public void onCharacteristicChanged(BluetoothGatt gatt,
363 public void onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor,
372 public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor,
381 public void onReliableWriteCompleted(BluetoothGatt gatt, int status) {
386 public void onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) {
  /frameworks/base/core/java/android/bluetooth/le/
BluetoothLeScanner.java 115 IBluetoothGatt gatt; local
117 gatt = mBluetoothManager.getBluetoothGatt();
119 gatt = null;
121 if (gatt == null) {
130 BleScanCallbackWrapper wrapper = new BleScanCallbackWrapper(gatt, filters,
206 * Bluetooth GATT interface callbacks
BluetoothLeAdvertiser.java 129 IBluetoothGatt gatt; local
131 gatt = mBluetoothManager.getBluetoothGatt();
133 Log.e(TAG, "Failed to get Bluetooth gatt - ", e);
138 scanResponse, settings, gatt);
227 * Bluetooth GATT interface callbacks for advertising.
  /developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java 39 * Service for managing connection and data communication with a GATT server hosted on a
69 // Implements callback methods for GATT events that the app cares about. For example,
73 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
79 Log.i(TAG, "Connected to GATT server.");
87 Log.i(TAG, "Disconnected from GATT server.");
93 public void onServicesDiscovered(BluetoothGatt gatt, int status) {
102 public void onCharacteristicRead(BluetoothGatt gatt,
111 public void onCharacteristicChanged(BluetoothGatt gatt,
128 // http://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicViewer.aspx?u=org.bluetooth.characteristic.heart_rate_measurement.xml
203 * Connects to the GATT server hosted on the Bluetooth LE device
    [all...]
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java 39 * Service for managing connection and data communication with a GATT server hosted on a
69 // Implements callback methods for GATT events that the app cares about. For example,
73 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
79 Log.i(TAG, "Connected to GATT server.");
87 Log.i(TAG, "Disconnected from GATT server.");
93 public void onServicesDiscovered(BluetoothGatt gatt, int status) {
102 public void onCharacteristicRead(BluetoothGatt gatt,
111 public void onCharacteristicChanged(BluetoothGatt gatt,
128 // http://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicViewer.aspx?u=org.bluetooth.characteristic.heart_rate_measurement.xml
203 * Connects to the GATT server hosted on the Bluetooth LE device
    [all...]
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
BluetoothLeService.java 39 * Service for managing connection and data communication with a GATT server hosted on a
69 // Implements callback methods for GATT events that the app cares about. For example,
73 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
79 Log.i(TAG, "Connected to GATT server.");
87 Log.i(TAG, "Disconnected from GATT server.");
93 public void onServicesDiscovered(BluetoothGatt gatt, int status) {
102 public void onCharacteristicRead(BluetoothGatt gatt,
111 public void onCharacteristicChanged(BluetoothGatt gatt,
128 // http://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicViewer.aspx?u=org.bluetooth.characteristic.heart_rate_measurement.xml
203 * Connects to the GATT server hosted on the Bluetooth LE device
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
Config.java 35 import com.android.bluetooth.gatt.GattService;

Completed in 121 milliseconds

1 2