HomeSort by relevance Sort by last modified time
    Searched refs:BluetoothGattCharacteristic (Results 1 - 14 of 14) sorted by null

  /frameworks/base/core/java/android/bluetooth/
BluetoothGattService.java 27 * <p> Gatt Service contains a collection of {@link BluetoothGattCharacteristic},
77 protected List<BluetoothGattCharacteristic> mCharacteristics;
98 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>();
112 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>();
143 public boolean addCharacteristic(BluetoothGattCharacteristic characteristic) {
153 /*package*/ BluetoothGattCharacteristic getCharacteristic(UUID uuid, int instanceId) {
154 for(BluetoothGattCharacteristic characteristic : mCharacteristics) {
240 public List<BluetoothGattCharacteristic> getCharacteristics() {
259 public BluetoothGattCharacteristic getCharacteristic(UUID uuid) {
260 for(BluetoothGattCharacteristic characteristic : mCharacteristics)
    [all...]
BluetoothGattCallback.java 59 public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic,
79 BluetoothGattCharacteristic characteristic, int status) {
90 BluetoothGattCharacteristic characteristic) {
BluetoothGattDescriptor.java 25 * characteristic, {@link BluetoothGattCharacteristic}. They can be used to describe
109 protected BluetoothGattCharacteristic mCharacteristic;
136 /*package*/ BluetoothGattDescriptor(BluetoothGattCharacteristic characteristic, UUID uuid,
141 private void initDescriptor(BluetoothGattCharacteristic characteristic, UUID uuid,
153 public BluetoothGattCharacteristic getCharacteristic() {
161 /*package*/ void setCharacteristic(BluetoothGattCharacteristic characteristic) {
BluetoothGattServerCallback.java 63 int offset, BluetoothGattCharacteristic characteristic) {
82 BluetoothGattCharacteristic characteristic,
BluetoothGatt.java 250 service.addCharacteristic(new BluetoothGattCharacteristic(
274 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
335 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
366 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
412 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
443 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
492 BluetoothGattCharacteristic characteristic = service.getCharacteristic(
    [all...]
BluetoothGattServer.java 151 BluetoothGattCharacteristic characteristic = service.getCharacteristic(charUuid);
180 BluetoothGattCharacteristic characteristic = service.getCharacteristic(charUuid);
210 BluetoothGattCharacteristic characteristic = service.getCharacteristic(charUuid);
243 BluetoothGattCharacteristic characteristic = service.getCharacteristic(charUuid);
495 BluetoothGattCharacteristic characteristic, boolean confirm) {
550 List<BluetoothGattCharacteristic> characteristics = service.getCharacteristics();
551 for (BluetoothGattCharacteristic characteristic : characteristics) {
BluetoothGattCharacteristic.java 30 public class BluetoothGattCharacteristic {
225 * Create a new BluetoothGattCharacteristic.
232 public BluetoothGattCharacteristic(UUID uuid, int properties, int permissions) {
237 * Create a new BluetoothGattCharacteristic
240 /*package*/ BluetoothGattCharacteristic(BluetoothGattService service,
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/
DeviceControlActivity.java 20 import android.bluetooth.BluetoothGattCharacteristic;
60 private ArrayList<ArrayList<BluetoothGattCharacteristic>> mGattCharacteristics =
61 new ArrayList<ArrayList<BluetoothGattCharacteristic>>();
63 private BluetoothGattCharacteristic mNotifyCharacteristic;
126 final BluetoothGattCharacteristic characteristic =
129 if ((charaProp | BluetoothGattCharacteristic.PROPERTY_READ) > 0) {
139 if ((charaProp | BluetoothGattCharacteristic.PROPERTY_NOTIFY) > 0) {
255 mGattCharacteristics = new ArrayList<ArrayList<BluetoothGattCharacteristic>>();
268 List<BluetoothGattCharacteristic> gattCharacteristics =
270 ArrayList<BluetoothGattCharacteristic> charas
    [all...]
BluetoothLeService.java 24 import android.bluetooth.BluetoothGattCharacteristic;
103 BluetoothGattCharacteristic characteristic,
112 BluetoothGattCharacteristic characteristic) {
123 final BluetoothGattCharacteristic characteristic) {
133 format = BluetoothGattCharacteristic.FORMAT_UINT16;
136 format = BluetoothGattCharacteristic.FORMAT_UINT8;
271 * Request a read on a given {@code BluetoothGattCharacteristic}. The read result is reported
272 * asynchronously through the {@code BluetoothGattCallback#onCharacteristicRead(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic, int)}
277 public void readCharacteristic(BluetoothGattCharacteristic characteristic) {
291 public void setCharacteristicNotification(BluetoothGattCharacteristic characteristic
    [all...]
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
DeviceControlActivity.java 20 import android.bluetooth.BluetoothGattCharacteristic;
60 private ArrayList<ArrayList<BluetoothGattCharacteristic>> mGattCharacteristics =
61 new ArrayList<ArrayList<BluetoothGattCharacteristic>>();
63 private BluetoothGattCharacteristic mNotifyCharacteristic;
126 final BluetoothGattCharacteristic characteristic =
129 if ((charaProp | BluetoothGattCharacteristic.PROPERTY_READ) > 0) {
139 if ((charaProp | BluetoothGattCharacteristic.PROPERTY_NOTIFY) > 0) {
255 mGattCharacteristics = new ArrayList<ArrayList<BluetoothGattCharacteristic>>();
268 List<BluetoothGattCharacteristic> gattCharacteristics =
270 ArrayList<BluetoothGattCharacteristic> charas
    [all...]
BluetoothLeService.java 24 import android.bluetooth.BluetoothGattCharacteristic;
103 BluetoothGattCharacteristic characteristic,
112 BluetoothGattCharacteristic characteristic) {
123 final BluetoothGattCharacteristic characteristic) {
133 format = BluetoothGattCharacteristic.FORMAT_UINT16;
136 format = BluetoothGattCharacteristic.FORMAT_UINT8;
271 * Request a read on a given {@code BluetoothGattCharacteristic}. The read result is reported
272 * asynchronously through the {@code BluetoothGattCallback#onCharacteristicRead(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic, int)}
277 public void readCharacteristic(BluetoothGattCharacteristic characteristic) {
291 public void setCharacteristicNotification(BluetoothGattCharacteristic characteristic
    [all...]
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 101 milliseconds