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

  /system/bt/service/common/android/bluetooth/
bluetooth_gatt_included_service.h 33 class BluetoothGattIncludedService : public Parcelable {
35 BluetoothGattIncludedService() = default;
36 BluetoothGattIncludedService(
41 ~BluetoothGattIncludedService() = default;
  /frameworks/base/core/java/android/bluetooth/
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...]

Completed in 283 milliseconds