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

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothMasInstance.java23 public final class BluetoothMasInstance implements Parcelable { class in inherits:Parcelable
29 public BluetoothMasInstance(int id, String name, int channel, int msgTypes) { method in class:BluetoothMasInstance
38 if (o instanceof BluetoothMasInstance) {
39 return mId == ((BluetoothMasInstance) o).mId;
60 public static final 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[siz
[all...]

Completed in 291 milliseconds