Searched refs:serviceHandle (Results 1 – 1 of 1) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
D | HandleMap.java | 43 public int serviceHandle = 0; field in HandleMap.Entry 68 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle) { in Entry() argument 73 this.serviceHandle = serviceHandle; in Entry() 76 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle, int charHandle) { in Entry() argument 81 this.serviceHandle = serviceHandle; in Entry() 105 void addCharacteristic(int serverIf, int handle, UUID uuid, int serviceHandle) { in addCharacteristic() argument 107 mEntries.add(new Entry(serverIf, TYPE_CHARACTERISTIC, handle, uuid, serviceHandle)); in addCharacteristic() 110 void addDescriptor(int serverIf, int handle, UUID uuid, int serviceHandle) { in addDescriptor() argument 111 mEntries.add(new Entry(serverIf, TYPE_DESCRIPTOR, handle, uuid, serviceHandle, in addDescriptor() 146 void deleteService(int serverIf, int serviceHandle) { in deleteService() argument [all …]
|