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

1 2 3 4 5 6 7 8 9

  /frameworks/base/core/java/android/bluetooth/
BluetoothProfile.java 18 package android.bluetooth;
26 * Public APIs for the Bluetooth Profiles.
38 * Bluetooth device.
40 public static final String EXTRA_STATE = "android.bluetooth.profile.extra.STATE";
46 * Bluetooth device.
49 "android.bluetooth.profile.extra.PREVIOUS_STATE";
192 @RequiresPermission(Manifest.permission.BLUETOOTH)
207 @RequiresPermission(Manifest.permission.BLUETOOTH)
213 * @param device Remote bluetooth device.
218 @RequiresPermission(Manifest.permission.BLUETOOTH)
    [all...]
BluetoothManager.java 17 package android.bluetooth;
31 * and to conduct overall Bluetooth Management.
43 * For more information about using BLUETOOTH, read the <a href=
44 * "{@docRoot}guide/topics/connectivity/bluetooth.html">Bluetooth</a> developer
74 * Get the default BLUETOOTH Adapter for this device.
76 * @return the default BLUETOOTH Adapter
86 * the connection state of the local Bluetooth adapter for certain profile.
88 * to know the state of Bluetooth.
90 * @param device Remote bluetooth device
    [all...]
BluetoothDevice.java 17 package android.bluetooth;
39 * Represents a remote Bluetooth device. A {@link BluetoothDevice} lets you
43 * <p>This class is really just a thin wrapper for a Bluetooth hardware
45 * are performed on the remote Bluetooth hardware address, using the
60 * Requires the {@link android.Manifest.permission#BLUETOOTH} permission.
65 * For more information about using Bluetooth, read the <a href=
66 * "{@docRoot}guide/topics/connectivity/bluetooth.html">Bluetooth</a> developer
101 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} and
107 "android.bluetooth.device.action.FOUND"
    [all...]
BluetoothAdapter.java 18 package android.bluetooth;
27 import android.bluetooth.le.BluetoothLeAdvertiser;
28 import android.bluetooth.le.BluetoothLeScanner;
29 import android.bluetooth.le.PeriodicAdvertisingManager;
30 import android.bluetooth.le.ScanCallback;
31 import android.bluetooth.le.ScanFilter;
32 import android.bluetooth.le.ScanRecord;
33 import android.bluetooth.le.ScanResult;
34 import android.bluetooth.le.ScanSettings;
65 * Represents the local device Bluetooth adapter. The {@link BluetoothAdapter
    [all...]
  /frameworks/base/services/core/java/com/android/server/lights/
LightsManager.java 28 public static final int LIGHT_ID_BLUETOOTH = Type.BLUETOOTH;
  /hardware/interfaces/light/2.0/
types.hal 93 BLUETOOTH,
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/
PowerUsageAdvancedTest.java 99 batterySippers.add(new BatterySipper(DrainType.BLUETOOTH, new FakeUid(FAKE_UID_1),
120 mMaxBatterySipper.drainType = DrainType.BLUETOOTH;
150 final DrainType drainTypes[] = {DrainType.WIFI, DrainType.BLUETOOTH, DrainType.IDLE,
152 final int usageTypes[] = {UsageType.WIFI, UsageType.BLUETOOTH, UsageType.IDLE,
189 case UsageType.BLUETOOTH:
246 UsageType.CELL, UsageType.BLUETOOTH, UsageType.IDLE, UsageType.USER,
255 dataList.add(new PowerUsageData(UsageType.BLUETOOTH, TYPE_BLUETOOTH_USAGE));
317 mPowerUsageData.usageType = UsageType.BLUETOOTH;
BatteryUtilsTest.java 142 mBluetoothBatterySipper.drainType = BatterySipper.DrainType.BLUETOOTH;
254 mNormalBatterySipper.drainType = BatterySipper.DrainType.BLUETOOTH;
  /frameworks/base/location/lib/java/com/android/location/provider/
GmsFusedBatchOptions.java 96 public static int BLUETOOTH = 1<<4;
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageAdvanced.java 65 UsageType.BLUETOOTH,
205 } else if (drainType == DrainType.BLUETOOTH) {
206 return UsageType.BLUETOOTH;
313 || usageType == UsageType.BLUETOOTH
359 UsageType.BLUETOOTH,
369 int BLUETOOTH = 4;
409 case UsageType.BLUETOOTH:
BatteryUtils.java 140 && sipper.drainType != BatterySipper.DrainType.BLUETOOTH
142 // Don't add it if it is overcounted, unaccounted, wifi, bluetooth, or screen
196 || drainType == BatterySipper.DrainType.BLUETOOTH
BatteryEntry.java 153 case BLUETOOTH:
  /frameworks/base/location/java/android/location/
FusedBatchOptions.java 104 public static int BLUETOOTH = 1<<4;
  /frameworks/base/tests/net/java/com/android/server/connectivity/
IpConnectivityEventBuilderTest.java 29 import static com.android.server.connectivity.metrics.nano.IpConnectivityLogClass.BLUETOOTH;
138 String.format(" link_layer: %d", BLUETOOTH),
  /frameworks/base/core/java/com/android/internal/os/
BatterySipper.java 120 BLUETOOTH,
  /frameworks/support/compat/tests/java/android/support/v4/content/
ContextCompatTest.java 150 assertEquals("Bluetooth permission denied", PackageManager.PERMISSION_DENIED,
152 android.Manifest.permission.BLUETOOTH));
  /hardware/interfaces/light/2.0/default/
Light.cpp 106 {Type::BLUETOOTH, LIGHT_ID_BLUETOOTH},
  /hardware/interfaces/light/2.0/vts/functional/
VtsHalLightV2_0TargetTest.cpp 71 Type::BLUETOOTH,
  /packages/apps/Car/Messenger/src/com/android/car/messenger/
MessengerService.java 20 import android.bluetooth.BluetoothAdapter;
21 import android.bluetooth.BluetoothDevice;
22 import android.bluetooth.BluetoothMapClient;
23 import android.bluetooth.BluetoothProfile;
209 registerReceiver(this, intentFilter, android.Manifest.permission.BLUETOOTH, null);
  /platform_testing/libraries/system-helpers/sysui-helper/src/android/system/helpers/
QuickSettingsHelper.java 49 "Auto-rotate screen"), BLUETOOTH("Bluetooth"), AIRPLANE("Airplane mode"),
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDevicePreference.java 17 package com.android.settings.bluetooth;
20 import android.bluetooth.BluetoothClass;
21 import android.bluetooth.BluetoothDevice;
40 import com.android.settingslib.bluetooth.CachedBluetoothDevice;
41 import com.android.settingslib.bluetooth.HidProfile;
42 import com.android.settingslib.bluetooth.LocalBluetoothProfile;
50 * Bluetooth device in the Bluetooth Settings screen.
74 public final String BLUETOOTH = r.getString(R.string.bluetooth_talkback_bluetooth);
157 // Disable this view if the bluetooth enable/disable preference view is of
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
IpConnectivityEventBuilder.java 362 TRANSPORT_LINKLAYER_MAP[TRANSPORT_BLUETOOTH] = IpConnectivityLogClass.BLUETOOTH;
385 IFNAME_LINKLAYER_MAP.put(IpConnectivityLogClass.BLUETOOTH, "bt-pan");
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
ProfileService.java 17 package com.android.bluetooth.btservice;
21 import com.android.bluetooth.Utils;
24 import android.bluetooth.BluetoothAdapter;
25 import android.bluetooth.BluetoothDevice;
40 public static final String BLUETOOTH_PERM = android.Manifest.permission.BLUETOOTH;
  /platform_testing/libraries/system-helpers/settings-helper/src/android/system/helpers/
SettingsHelper.java 19 import android.bluetooth.BluetoothAdapter;
20 import android.bluetooth.BluetoothManager;
56 private static final String BLUETOOTH = "Bluetooth";
434 By.descContains(BLUETOOTH).clazz(Switch.class));
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
MapClientService.java 17 package com.android.bluetooth.mapclient;
21 import android.bluetooth.BluetoothAdapter;
22 import android.bluetooth.BluetoothDevice;
23 import android.bluetooth.BluetoothProfile;
24 import android.bluetooth.IBluetoothMapClient;
29 import com.android.bluetooth.Utils;
30 import com.android.bluetooth.btservice.ProfileService;
45 private static final String BLUETOOTH_PERM = android.Manifest.permission.BLUETOOTH;
224 "Need BLUETOOTH permission");

Completed in 728 milliseconds

1 2 3 4 5 6 7 8 9