HomeSort by relevance Sort by last modified time
    Searched defs:iGatt (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/bluetooth/
BluetoothManager.java 130 IBluetoothGatt iGatt = managerService.getBluetoothGatt();
131 if (iGatt == null) return connectedDevices;
133 connectedDevices = iGatt.getDevicesMatchingConnectionStates(
175 IBluetoothGatt iGatt = managerService.getBluetoothGatt();
176 if (iGatt == null) return devices;
177 devices = iGatt.getDevicesMatchingConnectionStates(states);
206 IBluetoothGatt iGatt = managerService.getBluetoothGatt();
207 if (iGatt == null) {
211 BluetoothGattServer mGattServer = new BluetoothGattServer(context, iGatt);
BluetoothAdapter.java 487 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt();
488 if (iGatt == null) {
490 Log.e(TAG, "failed to start, iGatt null");
494 mBluetoothAdvScanData = new BluetoothAdvScanData(iGatt, BluetoothAdvScanData.AD);
532 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt();
533 if (iGatt == null) {
544 iGatt.startAdvertising(mAdvertisingGattCallback.mLeHandle);
558 iGatt.registerClient(new ParcelUuid(uuid), wrapper);
581 IBluetoothGatt iGatt = mManagerService.getBluetoothGatt();
582 if (iGatt == null)
    [all...]
BluetoothDevice.java     [all...]

Completed in 2881 milliseconds