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

  /packages/apps/Settings/tests/robotests/src/android/bluetooth/
BluetoothCodecConfig.java 22 public class BluetoothCodecConfig {
  /frameworks/base/core/java/android/bluetooth/
BluetoothCodecConfig.aidl 19 parcelable BluetoothCodecConfig;
BluetoothCodecStatus.java 43 private final BluetoothCodecConfig mCodecConfig;
44 private final BluetoothCodecConfig[] mCodecsLocalCapabilities;
45 private final BluetoothCodecConfig[] mCodecsSelectableCapabilities;
47 public BluetoothCodecStatus(BluetoothCodecConfig codecConfig,
48 BluetoothCodecConfig[] codecsLocalCapabilities,
49 BluetoothCodecConfig[] codecsSelectableCapabilities) {
89 final BluetoothCodecConfig codecConfig = in.readTypedObject(BluetoothCodecConfig.CREATOR);
90 final BluetoothCodecConfig[] codecsLocalCapabilities = in.createTypedArray(BluetoothCodecConfig.CREATOR)
    [all...]
IBluetoothA2dp.aidl 19 import android.bluetooth.BluetoothCodecConfig;
42 oneway void setCodecConfigPreference(in BluetoothCodecConfig codecConfig);
BluetoothCodecConfig.java 31 public final class BluetoothCodecConfig implements Parcelable {
75 public BluetoothCodecConfig(int codecType, int codecPriority,
93 if (o instanceof BluetoothCodecConfig) {
94 BluetoothCodecConfig other = (BluetoothCodecConfig)o;
212 public static final Parcelable.Creator<BluetoothCodecConfig> CREATOR =
213 new Parcelable.Creator<BluetoothCodecConfig>() {
214 public BluetoothCodecConfig createFromParcel(Parcel in) {
224 return new BluetoothCodecConfig(codecType, codecPriority,
230 public BluetoothCodecConfig[] newArray(int size)
    [all...]
BluetoothA2dp.java 627 public void setCodecConfigPreference(BluetoothCodecConfig codecConfig) {
  /frameworks/base/packages/SettingsLib/tests/robotests/src/android/bluetooth/
BluetoothCodecStatus.java 23 public BluetoothCodecConfig getCodecConfig() { return null; }
24 public BluetoothCodecConfig[] getCodecsSelectableCapabilities() { return null; }
BluetoothCodecConfig.java 22 public class BluetoothCodecConfig {
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpStateMachine.java 33 import android.bluetooth.BluetoothCodecConfig;
81 private BluetoothCodecConfig[] mCodecConfigPriorities;
113 private int mA2dpSourceCodecPrioritySbc = BluetoothCodecConfig.CODEC_PRIORITY_DEFAULT;
114 private int mA2dpSourceCodecPriorityAac = BluetoothCodecConfig.CODEC_PRIORITY_DEFAULT;
115 private int mA2dpSourceCodecPriorityAptx = BluetoothCodecConfig.CODEC_PRIORITY_DEFAULT;
116 private int mA2dpSourceCodecPriorityAptxHd = BluetoothCodecConfig.CODEC_PRIORITY_DEFAULT;
117 private int mA2dpSourceCodecPriorityLdac = BluetoothCodecConfig.CODEC_PRIORITY_DEFAULT;
158 private BluetoothCodecConfig[] assignCodecConfigPriorities() {
168 value = BluetoothCodecConfig.CODEC_PRIORITY_DEFAULT;
170 if ((value >= BluetoothCodecConfig.CODEC_PRIORITY_DISABLED
    [all...]
A2dpService.java 20 import android.bluetooth.BluetoothCodecConfig;
69 for (BluetoothCodecConfig config :
292 public void setCodecConfigPreference(BluetoothCodecConfig codecConfig) {
445 public void setCodecConfigPreference(BluetoothCodecConfig codecConfig) {
  /packages/apps/Test/connectivity/PMC/src/com/android/pmc/
A2dpReceiver.java 23 import android.bluetooth.BluetoothCodecConfig;
196 int codecType = BluetoothCodecConfig.SOURCE_CODEC_TYPE_INVALID;
197 int sampleRate = BluetoothCodecConfig.SAMPLE_RATE_NONE;
198 int bitsPerSample = BluetoothCodecConfig.BITS_PER_SAMPLE_NONE;
199 int channelMode = BluetoothCodecConfig.CHANNEL_MODE_STEREO;
319 if (codecType == BluetoothCodecConfig.SOURCE_CODEC_TYPE_INVALID
320 || sampleRate == BluetoothCodecConfig.SAMPLE_RATE_NONE
321 || bitsPerSample == BluetoothCodecConfig.BITS_PER_SAMPLE_NONE) {
399 private BluetoothCodecConfig getCodecValue(boolean printCapabilities) {
401 BluetoothCodecConfig codecConfig = null
    [all...]
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
A2dpProfileTest.java 19 import android.bluetooth.BluetoothCodecConfig;
126 BluetoothCodecConfig config = mock(BluetoothCodecConfig.class);
186 BluetoothCodecConfig config = mock(BluetoothCodecConfig.class);
187 BluetoothCodecConfig[] configs = {config};
201 BluetoothCodecConfig config = mock(BluetoothCodecConfig.class);
202 BluetoothCodecConfig[] configs = {config};
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
A2dpProfile.java 22 import android.bluetooth.BluetoothCodecConfig;
208 BluetoothCodecConfig codecConfig = null;
242 BluetoothCodecConfig[] selectable = null;
252 final BluetoothCodecConfig codecConfig = (selectable == null || selectable.length < 1)
255 ? BluetoothCodecConfig.SOURCE_CODEC_TYPE_INVALID : codecConfig.getCodecType();
259 case BluetoothCodecConfig.SOURCE_CODEC_TYPE_SBC:
262 case BluetoothCodecConfig.SOURCE_CODEC_TYPE_AAC:
265 case BluetoothCodecConfig.SOURCE_CODEC_TYPE_APTX:
268 case BluetoothCodecConfig.SOURCE_CODEC_TYPE_APTX_HD:
271 case BluetoothCodecConfig.SOURCE_CODEC_TYPE_LDAC
    [all...]