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

  /frameworks/base/core/java/android/bluetooth/
BluetoothMasInstance.java 23 public final class BluetoothMasInstance implements Parcelable {
29 public BluetoothMasInstance(int id, String name, int channel, int msgTypes) {
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[size]
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasClient.java 20 import android.bluetooth.BluetoothMasInstance;
583 * @param mas {@link BluetoothMasInstance} object describing MAS instance on
    [all...]

Completed in 54 milliseconds