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

  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothEnabler.java 43 private final LocalBluetoothManager mLocalManager;
59 mLocalManager = LocalBluetoothManager.getInstance(context);
60 if (mLocalManager == null) {
68 if (mLocalManager == null) {
73 handleStateChanged(mLocalManager.getBluetoothState());
80 if (mLocalManager == null) {
99 mLocalManager.setBluetoothEnabled(enable);
BluetoothDiscoverableEnabler.java 51 private final LocalBluetoothManager mLocalManager;
79 mLocalManager = LocalBluetoothManager.getInstance(context);
80 if (mLocalManager == null) {
87 if (mLocalManager == null) {
95 handleModeChanged(mLocalManager.getBluetoothAdapter().getScanMode());
99 if (mLocalManager == null) {
116 BluetoothAdapter manager = mLocalManager.getBluetoothAdapter();
145 SharedPreferences.Editor editor = mLocalManager.getSharedPreferences().edit();
161 int mode = mLocalManager.getBluetoothAdapter().getScanMode();
167 long endTimestamp = mLocalManager.getSharedPreferences().getLong
    [all...]
BluetoothSettings.java 72 private LocalBluetoothManager mLocalManager;
90 onBluetoothStateChanged(mLocalManager.getBluetoothState());
111 mLocalManager = LocalBluetoothManager.getInstance(this);
112 if (mLocalManager == null) finish();
174 mLocalManager.registerCallback(this);
176 mDeviceList.setProgress(mLocalManager.getBluetoothAdapter().isDiscovering());
177 mLocalManager.startScanning(false);
183 mLocalManager.setForegroundActivity(this);
190 mLocalManager.setForegroundActivity(null);
194 mLocalManager.unregisterCallback(this)
    [all...]
RequestPermissionHelperActivity.java 46 private LocalBluetoothManager mLocalManager;
99 btState = mLocalManager.getBluetoothState();
108 || mLocalManager.getBluetoothAdapter().enable()) {
139 mLocalManager = LocalBluetoothManager.getInstance(this);
140 if (mLocalManager == null) {
CachedBluetoothDeviceManager.java 38 final LocalBluetoothManager mLocalManager;
44 mLocalManager = localManager;
49 BluetoothAdapter adapter = mLocalManager.getBluetoothAdapter();
57 cachedDevice = new CachedBluetoothDevice(mLocalManager.getContext(), device);
83 cachedDevice = new CachedBluetoothDevice(mLocalManager.getContext(), device);
200 mLocalManager.showError(device, R.string.bluetooth_error_title, errorMsg);
204 mLocalManager.showError(device, R.string.bluetooth_error_title, errorMsg);
208 mLocalManager.showError(device, R.string.bluetooth_error_title, errorMsg);
215 mLocalManager.showError(device, R.string.bluetooth_error_title, errorMsg);
CachedBluetoothDevice.java 68 private final LocalBluetoothManager mLocalManager;
118 int newState = LocalBluetoothProfileManager.getProfileManager(mLocalManager,
129 mLocalManager = LocalBluetoothManager.getInstance(context);
130 if (mLocalManager == null) {
164 LocalBluetoothProfileManager.getProfileManager(mLocalManager, profile);
176 Context context = mLocalManager.getForegroundActivity();
237 .getProfileManager(mLocalManager, profile);
261 .getProfileManager(mLocalManager, profile);
279 LocalBluetoothProfileManager.getProfileManager(mLocalManager, profile);
280 CachedBluetoothDeviceManager cachedDeviceManager = mLocalManager.getCachedDeviceManager()
    [all...]
BluetoothNamePreference.java 45 private LocalBluetoothManager mLocalManager;
64 mLocalManager = LocalBluetoothManager.getInstance(context);
100 BluetoothAdapter adapter = mLocalManager.getBluetoothAdapter();
108 BluetoothAdapter adapter = mLocalManager.getBluetoothAdapter();
120 et.setText(mLocalManager.getBluetoothAdapter().getName());
RequestPermissionActivity.java 54 private LocalBluetoothManager mLocalManager;
102 int btState = mLocalManager.getBluetoothState();
187 if (mLocalManager.getBluetoothState() == BluetoothAdapter.STATE_ON) {
214 } else if (mLocalManager.getBluetoothAdapter().setScanMode(
259 mLocalManager = LocalBluetoothManager.getInstance(this);
260 if (mLocalManager == null) {
276 SharedPreferences.Editor editor = mLocalManager.getSharedPreferences().edit();
BluetoothPairingDialog.java 51 private LocalBluetoothManager mLocalManager;
90 mLocalManager = LocalBluetoothManager.getInstance(this);
149 String name = mLocalManager.getCachedDeviceManager().getName(mDevice);
LocalBluetoothProfileManager.java 85 protected LocalBluetoothManager mLocalManager;
167 mLocalManager = localManager;
354 mLocalManager.getCachedDeviceManager()

Completed in 31 milliseconds