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

1 2

  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
CallbackInfo.java 16 package com.android.bluetooth.gatt;
GattServiceConfig.java 17 package com.android.bluetooth.gatt;
GattDbElement.java 17 package com.android.bluetooth.gatt;
22 * Helper class for passing gatt db elements between java and JNI, equal to
ScanClient.java 17 package com.android.bluetooth.gatt;
AdvtFilterOnFoundOnLostInfo.java 17 package com.android.bluetooth.gatt;
FilterParams.java 17 package com.android.bluetooth.gatt;
AdvertiseHelper.java 17 package com.android.bluetooth.gatt;
GattDebugUtils.java 17 package com.android.bluetooth.gatt;
26 * Helper class containing useful tools for GATT service debugging.
66 * and <component> identifies the GATT service.
69 * import com.android.bluetooth.gatt.GattService;
160 b.append("------------ GATT TEST ACTIONS ----------------");
HandleMap.java 16 package com.android.bluetooth.gatt;
PeriodicScanManager.java 17 package com.android.bluetooth.gatt;
ScanFilterQueue.java 17 package com.android.bluetooth.gatt;
ContextMap.java 16 package com.android.bluetooth.gatt;
37 * Helper class that keeps track of registered GATT applications.
38 * This class manages application callbacks and keeps track of GATT connections.
AdvertiseManager.java 17 package com.android.bluetooth.gatt;
AppScanStats.java 16 package com.android.bluetooth.gatt;
ScanManager.java 17 package com.android.bluetooth.gatt;
81 "com.android.bluetooth.gatt.REFRESH_BATCHED_SCAN";
    [all...]
GattService.java 17 package com.android.bluetooth.gatt;
78 * Provides Bluetooth Gatt profile, as a service in
    [all...]
  /frameworks/base/core/java/android/bluetooth/le/
PeriodicAdvertisingManager.java 140 IBluetoothGatt gatt; local
142 gatt = mBluetoothManager.getBluetoothGatt();
144 Log.e(TAG, "Failed to get Bluetooth gatt - ", e);
159 gatt.registerSync(scanResult, skip, timeout, wrapped);
178 IBluetoothGatt gatt; local
180 gatt = mBluetoothManager.getBluetoothGatt();
182 Log.e(TAG, "Failed to get Bluetooth gatt - ", e);
192 gatt.unregisterSync(wrapper);
BluetoothLeScanner.java 222 IBluetoothGatt gatt; local
224 gatt = mBluetoothManager.getBluetoothGatt();
226 gatt = null;
228 if (gatt == null) {
244 BleScanCallbackWrapper wrapper = new BleScanCallbackWrapper(gatt, filters,
249 gatt.startScanForIntent(callbackIntent, settings, filters,
286 IBluetoothGatt gatt; local
288 gatt = mBluetoothManager.getBluetoothGatt();
289 gatt.stopScanForIntent(callbackIntent, ActivityThread.currentOpPackageName());
345 * Bluetooth GATT interface callback
    [all...]
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/gatt/
GattServiceTest.java 1 package com.android.bluetooth.gatt;
  /system/bt/service/
gatt_server_old.h 28 namespace gatt { namespace in namespace:bluetooth
40 // GATT characteristic properties bit-field values
72 // Register GATT interface, initialize internal state,
125 } // namespace gatt
gatt_server_old.cc 55 // each bluetooth::gatt::Server instance already keeps a pointer to the
74 static bluetooth::gatt::ServerInternals* g_internal = nullptr;
83 namespace gatt { namespace in namespace:bluetooth
115 const btgatt_interface_t* gatt; member in struct:bluetooth::gatt::ServerInternals
126 } // namespace gatt
178 prev_char_properties & bluetooth::gatt::kPropertyNotify;
180 bluetooth::gatt::Characteristic& ctrl =
201 bt_status_t btstat = g_internal->gatt->client->register_client(client_id);
212 bluetooth::gatt::Characteristic& ch =
247 g_internal->gatt->server->send_response(conn_id, trans_id, 0, response)
474 namespace gatt { namespace in namespace:bluetooth
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothAdapter.java 213 * UUID of the GATT Read Characteristics for LE_PSM value.
517 * when Bluetooth state in STATE_BLE_ON. This denotes GATT connection
531 * when Bluetooth state in STATE_BLE_ON. This denotes GATT disconnection as Bluetooth
2364 BluetoothGatt gatt = (BluetoothGatt) proxy; local
    [all...]
BluetoothDevice.java 643 * No preferrence of physical transport for GATT connections to remote dual-mode devices
648 * Prefer BR/EDR transport for GATT connections to remote dual-mode devices
653 * Prefer LE transport for GATT connections to remote dual-mode devices
1920 BluetoothGatt gatt = new BluetoothGatt(iGatt, this, transport, opportunistic, phy); local
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
GattClientFacade.java 100 * @param opportunistic Whether this GATT client is opportunistic. An opportunistic GATT client
101 * does not hold a GATT connection. It automatically disconnects when no
102 * other GATT connections are active for the remote device.
103 * @param transport preferred transport for GATT connections to remote dual-mode devices
108 @Rpc(description = "Create a gatt connection")
159 BluetoothGatt gatt = mBluetoothGattList.get(index); local
160 if (gatt != null) {
161 Object ret = gatt.getClass().getMethod("discoverServiceByUuid", UUID.class)
162 .invoke(gatt, UUID.fromString(uuid))
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothAccessoryFragment.java 160 // Only LE devices support GATT
249 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
254 gatt.discoverServices();
259 public void onServicesDiscovered(BluetoothGatt gatt, int status) {
262 Log.e(TAG, "Service discovery failure on " + gatt);
267 final BluetoothGattService battService = gatt.getService(GATT_BATTERY_SERVICE_UUID);
284 gatt.readCharacteristic(battLevel);
288 public void onCharacteristicRead(BluetoothGatt gatt,
292 Log.e(TAG, "Read characteristic failure on " + gatt + " " + characteristic);

Completed in 744 milliseconds

1 2