Home
last modified time | relevance | path

Searched refs:BluetoothMasInstance (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
DBluetoothMasInstance.java23 public final class BluetoothMasInstance implements Parcelable { class
29 public BluetoothMasInstance(int id, String name, int channel, int msgTypes) { in BluetoothMasInstance() method in BluetoothMasInstance
38 if (o instanceof BluetoothMasInstance) { in equals()
39 return mId == ((BluetoothMasInstance) o).mId; in equals()
60 … public static final @android.annotation.NonNull Parcelable.Creator<BluetoothMasInstance> CREATOR =
61 new Parcelable.Creator<BluetoothMasInstance>() {
62 public BluetoothMasInstance createFromParcel(Parcel in) {
63 return new BluetoothMasInstance(in.readInt(), in.readString(),
67 public BluetoothMasInstance[] newArray(int size) {
68 return new BluetoothMasInstance[size];