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

  /frameworks/base/core/java/android/bluetooth/
BluetoothGattIncludedService.aidl 19 parcelable BluetoothGattIncludedService;
BluetoothGattIncludedService.java 29 public class BluetoothGattIncludedService implements Parcelable {
47 * Create a new BluetoothGattIncludedService
49 public BluetoothGattIncludedService(UUID uuid, int instanceId, int serviceType) {
65 public static final Parcelable.Creator<BluetoothGattIncludedService> CREATOR
66 = new Parcelable.Creator<BluetoothGattIncludedService>() {
67 public BluetoothGattIncludedService createFromParcel(Parcel in) {
68 return new BluetoothGattIncludedService(in);
71 public BluetoothGattIncludedService[] newArray(int size) {
72 return new BluetoothGattIncludedService[size];
76 private BluetoothGattIncludedService(Parcel in)
    [all...]
BluetoothGattService.java 149 ArrayList<BluetoothGattIncludedService> includedServices =
150 new ArrayList<BluetoothGattIncludedService>(mIncludedServices.size());
152 includedServices.add(new BluetoothGattIncludedService(s.getUuid(),
187 ArrayList<BluetoothGattIncludedService> inclSvcs =
188 in.createTypedArrayList(BluetoothGattIncludedService.CREATOR);
190 for (BluetoothGattIncludedService isvc : inclSvcs) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattService.java 26 import android.bluetooth.BluetoothGattIncludedService;
    [all...]

Completed in 81 milliseconds