Searched refs:BluetoothMasInstance (Results 1 - 2 of 2) 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;
59 public static final Parcelable.Creator<BluetoothMasInstance> CREATOR =
60 new Parcelable.Creator<BluetoothMasInstance>() {
61 public BluetoothMasInstance createFromParcel(Parcel in) {
62 return new BluetoothMasInstance(in.readInt(), in.readString(),
65 public BluetoothMasInstance[] newArray(int size) {
66 return new BluetoothMasInstance[siz
[all...]
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasClient.java20 import android.bluetooth.BluetoothMasInstance;
583 * @param mas {@link BluetoothMasInstance} object describing MAS instance on

Completed in 178 milliseconds