Home | History | Annotate | Download | only in gatt

Lines Matching refs:serviceHandle

42         int serviceHandle = 0;
67 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle) {
73 this.serviceHandle = serviceHandle;
76 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle, int charHandle) {
82 this.serviceHandle = serviceHandle;
106 void addCharacteristic(int serverIf, int handle, UUID uuid, int serviceHandle) {
108 mEntries.add(new Entry(serverIf, TYPE_CHARACTERISTIC, handle, uuid, serviceHandle));
111 void addDescriptor(int serverIf, int handle, UUID uuid, int serviceHandle) {
112 mEntries.add(new Entry(serverIf, TYPE_DESCRIPTOR, handle, uuid, serviceHandle, mLastCharacteristic));
149 int getCharacteristicHandle(int serviceHandle, UUID uuid, int instance) {
152 entry.serviceHandle == serviceHandle &&
158 Log.e(TAG, "getCharacteristicHandle() - Service " + serviceHandle
163 void deleteService(int serverIf, int serviceHandle) {
168 if (entry.handle == serviceHandle ||
169 entry.serviceHandle == serviceHandle)