Home
last modified time | relevance | path

Searched refs:mPendingGattOperations (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/tbs/
DTbsGatt.java130 private Map<BluetoothDevice, List<GattOpContext>> mPendingGattOperations = new HashMap<>(); field in TbsGatt
1236 List<GattOpContext> operations = mPendingGattOperations.get(device); in onUnauthorizedGattOperation()
1239 mPendingGattOperations.put(device, operations); in onUnauthorizedGattOperation()
1464 mPendingGattOperations.remove(device); in clearUnauthorizedGattOperationss()
1472 if (mPendingGattOperations.containsKey(device)) { in processPendingGattOperations()
1474 for (GattOpContext op : mPendingGattOperations.get(device)) { in processPendingGattOperations()
1478 for (GattOpContext op : mPendingGattOperations.get(device)) { in processPendingGattOperations()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/mcp/
DMediaControlGattService.java151 private Map<BluetoothDevice, List<GattOpContext>> mPendingGattOperations = new HashMap<>(); field in MediaControlGattService
638 synchronized (mPendingGattOperations) { in onUnauthorizedGattOperation()
639 List<GattOpContext> operations = mPendingGattOperations.get(device); in onUnauthorizedGattOperation()
642 mPendingGattOperations.put(device, operations); in onUnauthorizedGattOperation()
858 synchronized (mPendingGattOperations) { in ClearUnauthorizedGattOperations()
859 mPendingGattOperations.remove(device); in ClearUnauthorizedGattOperations()
866 synchronized (mPendingGattOperations) { in ProcessPendingGattOperations()
867 if (mPendingGattOperations.containsKey(device)) { in ProcessPendingGattOperations()
869 for (GattOpContext op : mPendingGattOperations.get(device)) { in ProcessPendingGattOperations()
873 for (GattOpContext op : mPendingGattOperations.get(device)) { in ProcessPendingGattOperations()