Home | History | Annotate | Download | only in doc

Lines Matching refs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
31 boolean registerClient(in IBluetoothGattClientCallback callback);
36 void unregisterClient(in int client_id);
45 * database of remote device with address |device_address|. Returns false in
49 boolean refreshDevice(in int client_id, in String device_address);
56 * results will be returned from the attribute cache. Returns false in case of
59 boolean discoverServices(in int client_id, in String device_address);
63 * |characteristic_id|. The result will be asynchronously reported in
73 boolean readCharacteristic(in int client_id,
74 in GattIdentifier characteristic_id);
85 * The result will be asynchronously reported in
94 boolean writeCharacteristic(in int client_id,
95 in GattIdentifier characteristic_id,
96 in int write_type,
97 in byte[] value);
101 * |descriptor_id|. The result will be asynchronously reported in
111 boolean readDescriptor(in int client_id,
112 in GattIdentifier descriptor_id);
123 * The result will be asynchronously reported in
132 boolean writeDescriptor(in int client_id,
133 in GattIdentifier descriptor_id,
134 in int write_type,
135 in byte[] value);
143 boolean registerForNotifications(in int client_id,
144 in GattIdentifier characteristic_id);
152 boolean unregisterForNotifications(in int client_id,
153 in GattIdentifier characteristic_id);
161 * callback and abort reliable write in case of a mismatch. The queued writes
167 boolean beginReliableWrite(in int client_id, in String device_address);
173 * queued writes. Returns false in case of a failure, e.g. if a reliable write
178 boolean endReliableWrite(in int client_id, in String device_address,
179 in boolean execute);