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
26 * be returned in a callback to the application that can be used to perform
27 * GATT server operations. Returns false in case of an error.
29 boolean registerServer(in IBluetoothGattServerCallback callback);
34 void unregisterServer(in int server_if);
42 * Adds new GATT service. This will execute synchronously, and result in
47 boolean AddService(int server_id, in BluetoothGattService service);
55 * The |status| field should contain the result of the operation. In the case
56 * of success, the application should pass in "0". Otherwise this should
59 boolean sendResponse(in int server_if, in String device_address,
60 in int request_id, in int status,
61 in int offset, in byte[] value);
69 * reports the result asynchronously in
72 boolean sendNotification(in int server_if, in String device_address,
73 in int handle,
74 in boolean confirm, in byte[] value);