Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:characteristic

199    * Notify that characteristic was changed
203 * @param characteristicIndex characteristic index
207 @Rpc(description = "Notify that characteristic was changed.")
251 * Add a characteristic to a bluetooth gatt service
258 @Rpc(description = "Add a characteristic to a bluetooth gatt service")
279 * Add a characteristic to a bluetooth gatt service
281 * @param index the bluetooth gatt service to add a characteristic to
282 * @param characteristicIndex the characteristic to add
285 @Rpc(description = "Add a characteristic to a bluetooth gatt service")
373 * Add a descriptor to a bluetooth gatt characteristic
375 * @param index the bluetooth gatt characteristic to add a descriptor to
376 * @param descriptorIndex the descritor index to add to the characteristic
379 @Rpc(description = "add descriptor to blutooth gatt characteristic")
394 * Create a new Characteristic object
396 * @param characteristicUuid uuid The UUID for this characteristic
397 * @param property Properties of this characteristic
398 * @param permission permissions Permissions for this characteristic
401 @Rpc(description = "Create a new Characteristic object")
408 BluetoothGattCharacteristic characteristic =
410 mCharacteristicList.put(index, characteristic);
415 * Set value to a bluetooth gatt characteristic
417 * @param index the bluetooth gatt characteristic
421 @Rpc(description = "add descriptor to blutooth gatt characteristic")
485 BluetoothGattCharacteristic characteristic) {
489 mResults.putInt("instanceId", characteristic.getInstanceId());
490 mResults.putInt("properties", characteristic.getProperties());
491 mResults.putString("uuid", characteristic.getUuid().toString());
492 mResults.putInt("permissions", characteristic.getPermissions());
499 BluetoothGattCharacteristic characteristic, boolean preparedWrite, boolean responseNeeded,
508 mResults.putInt("instanceId", characteristic.getInstanceId());
509 mResults.putInt("properties", characteristic.getProperties());
510 mResults.putString("uuid", characteristic.getUuid().toString());
511 mResults.putInt("permissions", characteristic.getPermissions());