HomeSort by relevance Sort by last modified time
    Searched full:headset (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /external/bluetooth/bluez/test/
test-telephony 55 headset = dbus.Interface(bus.get_object("org.bluez", device), variable
56 "org.bluez.Headset")
57 headset.Connect()
65 headset = dbus.Interface(bus.get_object("org.bluez", device), variable
66 "org.bluez.Headset")
67 headset.Disconnect()
75 headset = dbus.Interface(bus.get_object("org.bluez", device), variable
76 "org.bluez.Headset")
78 headset.SetProperty('SpeakerGain', dbus.UInt16(args[2]))
80 props = headset.GetProperties(
90 headset = dbus.Interface(bus.get_object("org.bluez", device), variable
105 headset = dbus.Interface(bus.get_object("org.bluez", device), variable
116 headset = dbus.Interface(bus.get_object("org.bluez", device), variable
    [all...]
  /external/bluetooth/bluez/audio/
headset.c 55 #include "headset.h"
153 struct headset { struct
288 static int headset_send_valist(struct headset *hs, char *format, va_list ap)
300 error("headset_send: the headset is not connected");
322 headset_send(struct headset *hs, char *format, ...)
336 struct headset *hs = device->headset;
398 struct headset *hs = device->headset;
427 struct headset *hs = dev->headset
2096 struct headset *headset = dev->headset; local
    [all...]
audio.conf 7 Disable=Headset,Gateway
26 # Headset interface specific options (i.e. options which affect how the audio
27 # service interacts with remote headset devices)
28 #[Headset]
41 # by a headset.
manager.c 63 #include "headset.h"
78 HEADSET = 1 << 0,
115 .headset = TRUE,
141 return enabled.headset;
145 return enabled.headset && enabled.hfp;
184 DBG("Found Headset record");
185 if (device->headset)
188 device->headset = headset_init(device, uuid16,
192 DBG("Found Headset AG record");
196 if (device->headset)
    [all...]
device.h 49 struct headset;
63 struct headset *headset; member in struct:audio_device
main.c 45 #include "headset.h"
102 if (device->headset) {
104 DBG("Refusing SCO from non-connected headset");
headset.h 25 #define AUDIO_HEADSET_INTERFACE "org.bluez.Headset"
60 struct headset *headset_init(struct audio_device *dev, uint16_t svc,
manager.h 27 gboolean headset; member in struct:enabled_interfaces
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
AudioManagerCompatWrapper.java 36 * Checks whether audio routing to the wired headset is on or off.
38 * @return true if audio is being routed to/from wired headset;
46 * Checks whether A2DP audio routing to the Bluetooth headset is on or off.
48 * @return true if A2DP audio is being routed to/from Bluetooth headset;
  /system/bluetooth/data/
audio.conf 9 Disable=Headset,Gateway,Source
28 # Headset interface specific options (i.e. options which affect how the audio
29 # service interacts with remote headset devices)
30 #[Headset]
43 # by a headset.
  /packages/apps/Phone/src/com/android/phone/
BluetoothHeadsetService.java 50 * Provides Bluetooth Headset and Handsfree profile, as a service in
171 HeadsetBase headset;
176 headset = new HeadsetBase(mPowerManager, mAdapter,
180 headset.disconnect();
194 // headset connecting us, lets join
207 // different headset, ignoring
211 headset = new HeadsetBase(mPowerManager, mAdapter,
215 headset.disconnect();
219 // Incoming and Outgoing connections to the same headset.
243 HeadsetBase headset = new HeadsetBase(mPowerManager, mAdapter local
368 HeadsetBase headset = new HeadsetBase(mPowerManager, mAdapter, local
    [all...]
  /frameworks/base/services/java/com/android/server/
WiredAccessoryObserver.java 37 * <p>WiredAccessoryObserver monitors for a wired headset on the main board or dock.
96 if (LOG) Slog.v(TAG, "Headset UEVENT: " + event.toString());
152 Slog.w(TAG, "This kernel does not have wired headset support");
170 // - a: 0 heaset to 1 headset
171 // - b: 1 headset to 0 headset
178 // - c: 0 usb headset to 1 usb headset
179 // - d: 1 usb headset to 0 usb headset
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothHeadset.java 33 * Public API for controlling the Bluetooth Headset Service. This includes both
34 * Bluetooth Headset and Handsfree (v1.5) profiles.
36 * <p>BluetoothHeadset is a proxy object for controlling the Bluetooth Headset
43 * <p> Android only supports one connected Bluetooth Headset at a time.
51 * Intent used to broadcast the change in connection state of the Headset
69 "android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED";
89 "android.bluetooth.headset.profile.action.AUDIO_STATE_CHANGED";
93 * Intent used to broadcast that the headset has posted a
127 "android.bluetooth.headset.action.VENDOR_SPECIFIC_HEADSET_EVENT";
134 "android.bluetooth.headset.extra.VENDOR_SPECIFIC_HEADSET_EVENT_CMD"
    [all...]
BluetoothProfile.java 58 * Headset and Handsfree profile
60 public static final int HEADSET = 1;
164 * @param profile - One of {@link #HEALTH}, {@link #HEADSET} or
174 * @param profile - One of {@link #HEALTH}, {@link #HEADSET} or
IBluetoothHeadset.aidl 22 * API for Bluetooth Headset service
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeMapExtendTest.java     [all...]
  /frameworks/base/media/java/android/media/
package.html 9 in Bitmaps ({@link android.media.FaceDetector}), control audio routing (to the device or a headset)
  /external/guava/src/com/google/common/collect/
ForwardingSortedSet.java 48 public SortedSet<E> headSet(E toElement) {
49 return delegate().headSet(toElement);
  /packages/apps/Phone/res/menu/
incall_audio_mode_menu.xml 25 <!-- We display *either* "earpiece" or "wired headset", never both,
26 depending on whether a wired headset is physically plugged in
  /packages/apps/Settings/src/com/android/settings/bluetooth/
HeadsetProfile.java 33 * HeadsetProfile handles Bluetooth HFP and Headset profiles.
50 static final String NAME = "HEADSET";
63 // headset device.
99 BluetoothProfile.HEADSET);
123 // Downgrade priority as user is disconnecting the headset.
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 136 // java.util.TreeSet.headSet(java.lang.Object)
137 Set s = ts.headSet(new Integer(100));
142 SortedSet sort = ts.headSet(new Integer(100));
144 sort.headSet(new Integer(101));
151 ts.headSet(this);
158 ts.headSet(null);
  /development/apps/BluetoothDebug/
AndroidManifest.xml 28 <action android:name="android.bluetooth.headset.action.STATE_CHANGED" />
29 <action android:name="android.bluetooth.headset.action.AUDIO_STATE_CHANGED" />
  /external/bluetooth/bluez/doc/
audio-api.txt 53 Headset hierarchy
57 Interface org.bluez.Headset
76 Indicate an incoming call on the headset
78 ring the headset about every 3 seconds.
86 Open the audio connection to the headset.
94 Returns true if an audio connection to the headset
133 Sent when the answer button is pressed on the headset
196 Indicates if an audio connection to the headset
  /frameworks/base/obex/javax/obex/
ClientSession.java 291 HeaderSet headset; local
293 headset = new HeaderSet();
295 headset = header;
296 if (headset.nonce != null) {
298 System.arraycopy(headset.nonce, 0, mChallengeDigest, 0, 16);
303 if (headset.nonce != null) {
305 System.arraycopy(headset.nonce, 0, mChallengeDigest, 0, 16);
310 headset.mConnectionID = new byte[4];
311 System.arraycopy(mConnectionId, 0, headset.mConnectionID, 0, 4);
314 head = ObexHelper.createHeader(headset, false)
    [all...]
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothStressTest.java 246 mTestUtils.disconnectProfile(adapter, device, BluetoothProfile.HEADSET, null);
250 mTestUtils.connectProfile(adapter, device, BluetoothProfile.HEADSET,
252 mTestUtils.disconnectProfile(adapter, device, BluetoothProfile.HEADSET,
360 * In this test, a HSP connection is opened with an external headset and the SCO connection is
376 mTestUtils.disconnectProfile(adapter, device, BluetoothProfile.HEADSET, null);
377 mTestUtils.connectProfile(adapter, device, BluetoothProfile.HEADSET, null);
386 mTestUtils.disconnectProfile(adapter, device, BluetoothProfile.HEADSET, null);

Completed in 342 milliseconds

1 2 3 4 5 6 7