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

  /development/apps/BluetoothDebug/src/com/android/bluetoothdebug/
DebugReceiver.java 24 import android.bluetooth.BluetoothHeadset;
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetStateMachine.java 38 import android.bluetooth.BluetoothHeadset;
180 mAudioState = BluetoothHeadset.STATE_AUDIO_DISCONNECTED;
    [all...]
HeadsetService.java 20 import android.bluetooth.BluetoothHeadset;
225 if (service == null) return BluetoothHeadset.STATE_AUDIO_DISCONNECTED;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DockEventReceiver.java 23 import android.bluetooth.BluetoothHeadset;
84 } else if (BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED.equals(intent.getAction()) ||
HeadsetProfile.java 22 import android.bluetooth.BluetoothHeadset;
41 private BluetoothHeadset mService;
64 mService = (BluetoothHeadset) proxy;
LocalBluetoothProfileManager.java 21 import android.bluetooth.BluetoothHeadset;
52 * An interface for notifying BluetoothHeadset IPC clients when they have
53 * been connected to the BluetoothHeadset service.
59 * connected to the BluetoothHeadset service. Clients must wait for
60 * this callback before making IPC calls on the BluetoothHeadset
67 * disconnected from the BluetoothHeadset service. Clients must not
68 * make IPC calls on the BluetoothHeadset service after this callback.
70 * the BluetoothHeadset service, but may be called more often in future.
157 BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED);
DockService.java 28 import android.bluetooth.BluetoothHeadset;
206 if (BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED.equals(intent.getAction())) {
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
BluetoothHeadsetHandover.java 22 import android.bluetooth.BluetoothHeadset;
95 BluetoothHeadset mHeadset;
130 filter.addAction(BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED);
319 } else if (BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED.equals(action) &&
423 mHeadset = (BluetoothHeadset) proxy;
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerActivity.java 23 import android.bluetooth.BluetoothHeadset;
57 * This transitions out on events from TTS and the BluetoothHeadset
166 private BluetoothHeadset mBluetoothHeadset;
222 // Get handle to BluetoothHeadset object
225 audioStateFilter.addAction(BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED);
226 audioStateFilter.addAction(BluetoothHeadset.ACTION_AUDIO_STATE_CHANGED);
237 if (BluetoothHeadset.isBluetoothVoiceDialingEnabled(this) && mAdapter != null) {
390 // we can't start recognizing until we get connected to the BluetoothHeadset
419 mBluetoothHeadset = (BluetoothHeadset) proxy;
429 if (state == BluetoothHeadset.STATE_CONNECTED)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneGlobals.java 24 import android.bluetooth.BluetoothHeadset;
175 int mBluetoothHeadsetAudioState = BluetoothHeadset.STATE_AUDIO_DISCONNECTED;
560 intentFilter.addAction(BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED);
561 intentFilter.addAction(BluetoothHeadset.ACTION_AUDIO_STATE_CHANGED);
688 return (mBluetoothHeadsetAudioState != BluetoothHeadset.STATE_AUDIO_DISCONNECTED);
    [all...]
BluetoothPhoneService.java 22 import android.bluetooth.BluetoothHeadset;
64 private BluetoothHeadset mBluetoothHeadset;
459 mBluetoothHeadset = (BluetoothHeadset) proxy;
    [all...]
CallNotifier.java 35 import android.bluetooth.BluetoothHeadset;
157 private BluetoothHeadset mBluetoothHeadset;
    [all...]
InCallScreen.java 26 import android.bluetooth.BluetoothHeadset;
201 private BluetoothHeadset mBluetoothHeadset;
526 mBluetoothHeadset = (BluetoothHeadset) proxy;
527 if (VDBG) log("- Got BluetoothHeadset: " + mBluetoothHeadset);
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothHeadset.java 36 * <p>BluetoothHeadset is a proxy object for controlling the Bluetooth Headset
40 * the BluetoothHeadset proxy object. Use
46 public final class BluetoothHeadset implements BluetoothProfile {
47 private static final String TAG = "BluetoothHeadset";
257 * Create a BluetoothHeadset proxy object.
259 /*package*/ BluetoothHeadset(Context context, ServiceListener l) {
280 * Other public functions of BluetoothHeadset will return default error
674 return BluetoothHeadset.STATE_AUDIO_DISCONNECTED;
797 * This is a backdoor for phone app to call BluetoothHeadset since
819 * This is a backdoor for phone app to call BluetoothHeadset sinc
    [all...]
BluetoothAdapter.java     [all...]
  /frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
ScoAudioTest.java 22 import android.bluetooth.BluetoothHeadset;
82 private BluetoothHeadset mBluetoothHeadset;
104 new IntentFilter(BluetoothHeadset.ACTION_AUDIO_STATE_CHANGED);
645 mBluetoothHeadset = (BluetoothHeadset) proxy;
674 if (action.equals(BluetoothHeadset.ACTION_AUDIO_STATE_CHANGED)) {
677 Log.e(TAG, "BluetoothHeadset.ACTION_AUDIO_STATE_CHANGED: "+state);
  /frameworks/base/services/java/com/android/server/am/
BatteryStatsService.java 20 import android.bluetooth.BluetoothHeadset;
53 private BluetoothHeadset mBluetoothHeadset;
327 mBluetoothHeadset = (BluetoothHeadset) proxy;
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 224 mConnectionAction = BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED;
319 mHeadset = (BluetoothHeadset) proxy;
360 private BluetoothHeadset mHeadset = null;
    [all...]
  /frameworks/base/media/java/android/media/
AudioService.java 34 import android.bluetooth.BluetoothHeadset;
350 // BluetoothHeadset API to control SCO connection
351 private BluetoothHeadset mBluetoothHeadset;
378 // SCO audio mode is virtual voice call (BluetoothHeadset.startScoUsingVirtualVoiceCall())
380 // SCO audio mode is raw audio (BluetoothHeadset.connectAudio())
522 new IntentFilter(BluetoothHeadset.ACTION_AUDIO_STATE_CHANGED);
523 intentFilter.addAction(BluetoothHeadset.ACTION_CONNECTION_STATE_CHANGED);
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 23 import android.bluetooth.BluetoothHeadset;
245 BluetoothHeadset mBtHeadset;
    [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 2629 milliseconds