Searched refs:BluetoothGattIncludedService (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattIncludedService.aidl19 parcelable BluetoothGattIncludedService;
H A DBluetoothGattIncludedService.java29 public class BluetoothGattIncludedService implements Parcelable { class in inherits:Parcelable
47 * Create a new BluetoothGattIncludedService
49 public BluetoothGattIncludedService(UUID uuid, int instanceId, int serviceType) { method in class:BluetoothGattIncludedService
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(Parce method in class:BluetoothGattIncludedService
[all...]
H A DBluetoothGattService.java149 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) {

Completed in 1959 milliseconds