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
30 void onClientRegistered(in int status, in int client_id);
38 void onGetService(in boolean is_primary, in GattIdentifier service_id);
44 void onGetIncludedService(in GattIdentifier included_service_id);
50 * characteristic properties as defined in the Bluetooth Core Specification.
52 void onGetCharacteristic(in GattIdentifier characteristic_id,
53 in int properties);
60 void onGetDescriptor(in GattIdentifier descriptor_id);
67 void onSearchComplete(in String device_address, in int status);
72 * code in case of an error. |characteristic_id| refers to the characteristic
75 * can be ignored in case of failure.
77 void onCharacteristicRead(in int status, in GattIdentifier characteristic_id,
78 in byte[] value);
83 * code in case of an error. |characteristic_id| refers to the characteristic
86 void onCharacteristicWrite(in int status,
87 in GattIdentifier characteristic_id);
93 * success and an ATT error code in case of an error.
95 void onExecuteWrite(in String device_address, in int status);
100 * code in case of an error. |descriptor_id| refers to the descriptor this
103 * can be ignored in case of failure.
105 void onDescriptorRead(in int status, in GattIdentifier descriptor_id,
106 in byte[] value);
111 * code in case of an error. |descriptor_id| refers to the descriptor this
114 void onDescriptorWrite(in int status, in GattIdentifier descriptor_id);
120 void onNotify(in GattIdentifier characteristic_id, in byte[] value);