Searched refs:BluetoothAudioConfig (Results 1 – 2 of 2) sorted by relevance
29 public final class BluetoothAudioConfig implements Parcelable { class35 public BluetoothAudioConfig(int sampleRate, int channelConfig, int audioFormat) { in BluetoothAudioConfig() method in BluetoothAudioConfig43 if (o instanceof BluetoothAudioConfig) { in equals()44 BluetoothAudioConfig bac = (BluetoothAudioConfig) o; in equals()67 … public static final @android.annotation.NonNull Parcelable.Creator<BluetoothAudioConfig> CREATOR =68 new Parcelable.Creator<BluetoothAudioConfig>() {69 public BluetoothAudioConfig createFromParcel(Parcel in) {73 return new BluetoothAudioConfig(sampleRate, channelConfig, audioFormat);76 public BluetoothAudioConfig[] newArray(int size) {77 return new BluetoothAudioConfig[size];
254 public BluetoothAudioConfig getAudioConfig(BluetoothDevice device) { in getAudioConfig()