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

  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDeviceFilter.java 19 import android.bluetooth.BluetoothClass;
100 abstract boolean matches(ParcelUuid[] uuids, BluetoothClass btClass);
110 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) {
119 if (btClass.doesClassMatch(BluetoothClass.PROFILE_A2DP) ||
120 btClass.doesClassMatch(BluetoothClass.PROFILE_HEADSET)) {
131 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) {
138 && btClass.doesClassMatch(BluetoothClass.PROFILE_OPP);
145 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) {
152 && btClass.doesClassMatch(BluetoothClass.PROFILE_PANU);
159 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass)
    [all...]
LocalBluetoothProfile.java 19 import android.bluetooth.BluetoothClass;
70 int getDrawableResource(BluetoothClass btClass);
HidProfile.java 19 import android.bluetooth.BluetoothClass;
134 public int getDrawableResource(BluetoothClass btClass) {
141 static int getHidClassDrawable(BluetoothClass btClass) {
143 case BluetoothClass.Device.PERIPHERAL_KEYBOARD:
144 case BluetoothClass.Device.PERIPHERAL_KEYBOARD_POINTING:
146 case BluetoothClass.Device.PERIPHERAL_POINTING:
OppProfile.java 21 import android.bluetooth.BluetoothClass;
86 public int getDrawableResource(BluetoothClass btClass) {
BluetoothDevicePreference.java 20 import android.bluetooth.BluetoothClass;
267 BluetoothClass btClass = mCachedDevice.getBtClass();
270 case BluetoothClass.Device.Major.COMPUTER:
273 case BluetoothClass.Device.Major.PHONE:
276 case BluetoothClass.Device.Major.PERIPHERAL:
279 case BluetoothClass.Device.Major.IMAGING:
297 if (btClass.doesClassMatch(BluetoothClass.PROFILE_A2DP)) {
301 if (btClass.doesClassMatch(BluetoothClass.PROFILE_HEADSET)) {
A2dpProfile.java 21 import android.bluetooth.BluetoothClass;
159 public int getDrawableResource(BluetoothClass btClass) {
PanProfile.java 20 import android.bluetooth.BluetoothClass;
141 public int getDrawableResource(BluetoothClass btClass) {
HeadsetProfile.java 19 import android.bluetooth.BluetoothClass;
191 public int getDrawableResource(BluetoothClass btClass) {
CachedBluetoothDevice.java 19 import android.bluetooth.BluetoothClass;
51 private BluetoothClass mBtClass;
443 BluetoothClass bluetoothClass = mDevice.getBluetoothClass();
445 if (bluetoothClass != null) Log.v(TAG, "Class: " + bluetoothClass.toString());
505 void setBtClass(BluetoothClass btClass) {
512 BluetoothClass getBtClass() {
Utils.java 20 import android.bluetooth.BluetoothClass;
BluetoothEventManager.java 22 import android.bluetooth.BluetoothClass;
193 BluetoothClass btClass = intent.getParcelableExtra(BluetoothDevice.EXTRA_CLASS);
  /frameworks/base/core/java/android/bluetooth/
BluetoothClass.java 32 * <p>{@link BluetoothClass} is useful as a hint to roughly describe a device
51 public final class BluetoothClass implements Parcelable {
61 public BluetoothClass(int classInt) {
67 if (o instanceof BluetoothClass) {
68 return mClass == ((BluetoothClass)o).mClass;
87 public static final Parcelable.Creator<BluetoothClass> CREATOR =
88 new Parcelable.Creator<BluetoothClass>() {
89 public BluetoothClass createFromParcel(Parcel in) {
90 return new BluetoothClass(in.readInt());
92 public BluetoothClass[] newArray(int size)
    [all...]
BluetoothPbap.java 224 public static boolean doesClassMatchSink(BluetoothClass btClass) {
227 case BluetoothClass.Device.COMPUTER_DESKTOP:
228 case BluetoothClass.Device.COMPUTER_LAPTOP:
229 case BluetoothClass.Device.COMPUTER_SERVER:
230 case BluetoothClass.Device.COMPUTER_UNCATEGORIZED:
BluetoothDevice.java 102 * @see {@link BluetoothClass}
190 * Used as an Parcelable {@link BluetoothClass} extra field in {@link
735 public BluetoothClass getBluetoothClass() {
738 if (classInt == BluetoothClass.ERROR) return null;
739 return new BluetoothClass(classInt);
    [all...]
  /development/apps/BluetoothDebug/src/com/android/bluetoothdebug/
DebugReceiver.java 21 import android.bluetooth.BluetoothClass;
  /frameworks/base/core/java/android/server/
BluetoothEventLoop.java 21 import android.bluetooth.BluetoothClass;
197 new BluetoothClass(Integer.valueOf(classValue)));
413 new BluetoothClass(Integer.valueOf(propValues[1])));
645 BluetoothClass btClass = new BluetoothClass(mBluetoothService.getRemoteClass(address));
660 case BluetoothClass.Device.AUDIO_VIDEO_WEARABLE_HEADSET:
661 case BluetoothClass.Device.AUDIO_VIDEO_HANDSFREE:
662 case BluetoothClass.Device.AUDIO_VIDEO_HEADPHONES:
663 case BluetoothClass.Device.AUDIO_VIDEO_PORTABLE_AUDIO:
664 case BluetoothClass.Device.AUDIO_VIDEO_HIFI_AUDIO
    [all...]
BluetoothService.java 28 import android.bluetooth.BluetoothClass;
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/
ActivityMusic.java 26 import android.bluetooth.BluetoothClass;
180 if ((deviceClass == BluetoothClass.Device.AUDIO_VIDEO_HEADPHONES)
181 || (deviceClass == BluetoothClass.Device.AUDIO_VIDEO_WEARABLE_HEADSET)) {
190 if ((deviceClass == BluetoothClass.Device.AUDIO_VIDEO_HEADPHONES)
191 || (deviceClass == BluetoothClass.Device.AUDIO_VIDEO_WEARABLE_HEADSET)) {
  /frameworks/base/media/java/android/media/
AudioService.java 29 import android.bluetooth.BluetoothClass;
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 1349 milliseconds