HomeSort by relevance Sort by last modified time
    Searched refs:BluetoothA2dp (Results 1 - 25 of 43) sorted by null

1 2

  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
BluetoothA2dpWrapper.java 19 import android.bluetooth.BluetoothA2dp;
24 * This interface replicates some methods of android.bluetooth.BluetoothA2dp that are new and not
31 BluetoothA2dpWrapper getInstance(BluetoothA2dp service);
35 * @return the real {@code BluetoothA2dp} object
37 BluetoothA2dp getService();
40 * Wraps {@code BluetoothA2dp.getCodecStatus}
45 * Wraps {@code BluetoothA2dp.supportsOptionalCodecs}
50 * Wraps {@code BluetoothA2dp.getOptionalCodecsEnabled}
55 * Wraps {@code BluetoothA2dp.setOptionalCodecsEnabled}
BluetoothA2dpWrapperImpl.java 19 import android.bluetooth.BluetoothA2dp;
27 public BluetoothA2dpWrapper getInstance(BluetoothA2dp service) {
32 private BluetoothA2dp mService;
34 public BluetoothA2dpWrapperImpl(BluetoothA2dp service) {
39 public BluetoothA2dp getService() {
A2dpProfile.java 19 import android.bluetooth.BluetoothA2dp;
44 private BluetoothA2dp mService;
69 mService = (BluetoothA2dp) proxy;
194 return support == BluetoothA2dp.OPTIONAL_CODECS_SUPPORTED;
199 if (enabled != BluetoothA2dp.OPTIONAL_CODECS_PREF_UNKNOWN) {
200 return enabled == BluetoothA2dp.OPTIONAL_CODECS_PREF_ENABLED;
221 ? BluetoothA2dp.OPTIONAL_CODECS_PREF_ENABLED
222 : BluetoothA2dp.OPTIONAL_CODECS_PREF_DISABLED;
LocalBluetoothProfileManager.java 19 import android.bluetooth.BluetoothA2dp;
164 BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothA2dpConnector.java 19 import android.bluetooth.BluetoothA2dp;
39 private BluetoothA2dp mA2dpProfile;
53 BluetoothA2dp.EXTRA_PREVIOUS_STATE,
54 BluetoothA2dp.STATE_CONNECTING);
55 int state = intent.getIntExtra(BluetoothA2dp.EXTRA_STATE,
56 BluetoothA2dp.STATE_CONNECTING);
62 if (previousState == BluetoothA2dp.STATE_CONNECTING) {
63 if (state == BluetoothA2dp.STATE_CONNECTED) {
65 } else if (state == BluetoothA2dp.STATE_DISCONNECTED) {
93 BluetoothA2dp mA2dpProfile = (BluetoothA2dp) proxy
    [all...]
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
A2dpProfileTest.java 18 import android.bluetooth.BluetoothA2dp;
57 @Mock BluetoothA2dp mBluetoothA2dp;
68 // we can call its onServiceConnected method and get it to use our mock BluetoothA2dp
83 BluetoothA2dp.OPTIONAL_CODECS_SUPPORTED);
87 BluetoothA2dp.OPTIONAL_CODECS_NOT_SUPPORTED);
91 BluetoothA2dp.OPTIONAL_CODECS_SUPPORT_UNKNOWN);
98 BluetoothA2dp.OPTIONAL_CODECS_PREF_ENABLED);
102 BluetoothA2dp.OPTIONAL_CODECS_PREF_DISABLED);
110 BluetoothA2dp.OPTIONAL_CODECS_PREF_UNKNOWN);
115 BluetoothA2dp.OPTIONAL_CODECS_NOT_SUPPORTED)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpService.java 19 import android.bluetooth.BluetoothA2dp;
56 if (!BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED.equals(intent.getAction())) {
76 if (previousSupport == BluetoothA2dp.OPTIONAL_CODECS_SUPPORT_UNKNOWN
78 != (previousSupport == BluetoothA2dp.OPTIONAL_CODECS_SUPPORTED)) {
83 if (enabled == BluetoothA2dp.OPTIONAL_CODECS_PREF_ENABLED) {
85 } else if (enabled == BluetoothA2dp.OPTIONAL_CODECS_PREF_DISABLED) {
115 filter.addAction(BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED);
314 BluetoothA2dp.OPTIONAL_CODECS_SUPPORT_UNKNOWN);
320 int value = doesSupport ? BluetoothA2dp.OPTIONAL_CODECS_SUPPORTED
321 : BluetoothA2dp.OPTIONAL_CODECS_NOT_SUPPORTED
    [all...]
A2dpStateMachine.java 31 import android.bluetooth.BluetoothA2dp;
601 broadcastAudioState(mCurrentDevice, BluetoothA2dp.STATE_NOT_PLAYING,
602 BluetoothA2dp.STATE_PLAYING);
    [all...]
  /development/apps/BluetoothDebug/src/com/android/bluetoothdebug/
DebugReceiver.java 19 import android.bluetooth.BluetoothA2dp;
  /frameworks/av/services/audiopolicy/engineconfigurable/wrapper/config/
audio_policy_criteria.conf 51 OutputDevicesMaskType Earpiece,Speaker,WiredHeadset,WiredHeadphone,BluetoothSco,BluetoothScoHeadset,BluetoothScoCarkit,BluetoothA2dp,BluetoothA2dpHeadphones,BluetoothA2dpSpeaker,Hdmi,AnlgDockHeadset,DgtlDockHeadset,UsbAccessory,UsbDevice,RemoteSubmix,TelephonyTx,Line,HdmiArc,Spdif,Fm,AuxLine,SpeakerSafe
58 InputDevicesMaskType Communication,Ambient,BuiltinMic,BluetoothScoHeadset,WiredHeadset,Hdmi,TelephonyRx,BackMic,RemoteSubmix,AnlgDockHeadset,DgtlDockHeadset,UsbAccessory,UsbDevice,FmTuner,TvTune,Line,Spdif,BluetoothA2dp,Loopback
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothA2dpFacade.java 20 import android.bluetooth.BluetoothA2dp;
43 private static BluetoothA2dp sA2dpProfile = null;
56 sA2dpProfile = (BluetoothA2dp) proxy;
BluetoothConnectionFacade.java 27 import android.bluetooth.BluetoothA2dp;
133 mA2dpStateChangeFilter = new IntentFilter(BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED);
304 case BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED:
  /packages/apps/Test/connectivity/PMC/src/com/android/pmc/
A2dpReceiver.java 21 import android.bluetooth.BluetoothA2dp;
59 private BluetoothA2dp mBluetoothA2dp;
73 if (BluetoothA2dp.ACTION_CODEC_CONFIG_CHANGED.equals(action)) {
88 mBluetoothA2dp = (BluetoothA2dp) proxy;
132 filter.addAction(BluetoothA2dp.ACTION_CODEC_CONFIG_CHANGED);
455 Log.d(TAG, "Wait for BluetoothA2dp");
  /frameworks/base/core/java/android/bluetooth/
BluetoothA2dp.java 45 *<p>BluetoothA2dp is a proxy object for controlling the Bluetooth A2DP
47 * the BluetoothA2dp proxy object.
52 public final class BluetoothA2dp implements BluetoothProfile {
53 private static final String TAG = "BluetoothA2dp";
208 * Create a BluetoothA2dp proxy object for interacting with the local
212 /*package*/ BluetoothA2dp(Context context, ServiceListener l) {
750 if (value != BluetoothA2dp.OPTIONAL_CODECS_PREF_UNKNOWN &&
751 value != BluetoothA2dp.OPTIONAL_CODECS_PREF_DISABLED &&
752 value != BluetoothA2dp.OPTIONAL_CODECS_PREF_ENABLED) {
807 mServiceListener.onServiceConnected(BluetoothProfile.A2DP, BluetoothA2dp.this)
    [all...]
BluetoothAdapter.java     [all...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
BluetoothPeripheralHandover.java 19 import android.bluetooth.BluetoothA2dp;
112 BluetoothA2dp mA2dp;
168 filter.addAction(BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED);
476 } else if (BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED.equals(action) &&
632 mA2dp = (BluetoothA2dp) proxy;
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
PhonePolicy.java 19 import android.bluetooth.BluetoothA2dp;
108 case BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED:
191 filter.addAction(BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED);
AdapterProperties.java 19 import android.bluetooth.BluetoothA2dp;
109 case BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED:
165 filter.addAction(BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED);
    [all...]
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 225 mConnectionAction = BluetoothA2dp.ACTION_CONNECTION_STATE_CHANGED;
320 mA2dp = (BluetoothA2dp) proxy;
363 private BluetoothA2dp mA2dp = null;
    [all...]
  /packages/apps/Settings/src/com/android/settings/development/
DevelopmentSettings.java 27 import android.bluetooth.BluetoothA2dp;
294 private BluetoothA2dp mBluetoothA2dp;
    [all...]
  /frameworks/base/services/core/java/com/android/server/audio/
AudioService.java 38 import android.bluetooth.BluetoothA2dp;
582 // Reference to BluetoothA2dp to query for AbsoluteVolume.
583 private BluetoothA2dp mA2dp;
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
Avrcp.java 21 import android.bluetooth.BluetoothA2dp;
246 mA2dpState = BluetoothA2dp.STATE_NOT_PLAYING;
    [all...]
  /frameworks/base/config/
preloaded-classes 438 android.bluetooth.BluetoothA2dp
439 android.bluetooth.BluetoothA2dp$1
440 android.bluetooth.BluetoothA2dp$2
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 885 milliseconds

1 2