OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bluetoothManager
(Results
1 - 8
of
8
) sorted by null
/developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
DeviceScanActivity.java
23
import android.bluetooth.
BluetoothManager
;
68
// BluetoothAdapter through
BluetoothManager
.
69
final
BluetoothManager
bluetoothManager
=
70
(
BluetoothManager
) getSystemService(Context.BLUETOOTH_SERVICE);
71
mBluetoothAdapter =
bluetoothManager
.getAdapter();
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
DeviceScanActivity.java
23
import android.bluetooth.
BluetoothManager
;
68
// BluetoothAdapter through
BluetoothManager
.
69
final
BluetoothManager
bluetoothManager
=
70
(
BluetoothManager
) getSystemService(Context.BLUETOOTH_SERVICE);
71
mBluetoothAdapter =
bluetoothManager
.getAdapter();
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
DeviceScanActivity.java
23
import android.bluetooth.
BluetoothManager
;
68
// BluetoothAdapter through
BluetoothManager
.
69
final
BluetoothManager
bluetoothManager
=
70
(
BluetoothManager
) getSystemService(Context.BLUETOOTH_SERVICE);
71
mBluetoothAdapter =
bluetoothManager
.getAdapter();
/packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPermissionActivity.java
211
LocalBluetoothManager
bluetoothManager
= Utils.getLocalBtManager(this);
213
bluetoothManager
.getCachedDeviceManager();
216
cachedDevice = cachedDeviceManager.addDevice(
bluetoothManager
.getBluetoothAdapter(),
217
bluetoothManager
.getProfileManager(),
BluetoothPermissionRequest.java
223
LocalBluetoothManager
bluetoothManager
= Utils.getLocalBtManager(mContext);
225
bluetoothManager
.getCachedDeviceManager();
228
cachedDevice = cachedDeviceManager.addDevice(
bluetoothManager
.getBluetoothAdapter(),
229
bluetoothManager
.getProfileManager(), mDevice);
/packages/services/Telecomm/src/com/android/server/telecom/
TelecomSystem.java
173
BluetoothManager
bluetoothManager
= new
BluetoothManager
(mContext,
196
bluetoothManager
,
/platform_testing/tests/functional/settingstests/src/com/android/settings/functional/
QuickSettingsTest.java
19
import android.bluetooth.
BluetoothManager
;
194
BluetoothManager
bluetoothManager
= (
BluetoothManager
) getInstrumentation().getContext()
197
bluetoothManager
.getAdapter().enable();
199
bluetoothManager
.getAdapter().disable();
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyboard/
KeyboardUI.java
174
LocalBluetoothManager
bluetoothManager
= LocalBluetoothManager.getInstance(context, null);
175
if (
bluetoothManager
== null) {
182
mCachedDeviceManager =
bluetoothManager
.getCachedDeviceManager();
183
mLocalBluetoothAdapter =
bluetoothManager
.getBluetoothAdapter();
184
mProfileManager =
bluetoothManager
.getProfileManager();
185
bluetoothManager
.getEventManager().registerCallback(new BluetoothCallbackHandler());
Completed in 1869 milliseconds