Home
last modified time | relevance | path

Searched refs:BluetoothController (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DBluetoothControllerImplTest.java114 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testAsyncBondState()
130 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testAsyncConnectionState()
148 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testNullAsync_DoesNotCrash()
195 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testOnACLConnectionStateChange_updatesBluetoothStateOnConnection()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
DFakeBluetoothController.java20 import com.android.systemui.statusbar.policy.BluetoothController;
21 import com.android.systemui.statusbar.policy.BluetoothController.Callback;
28 BluetoothController {
DLeakCheckedTest.java25 import com.android.systemui.statusbar.policy.BluetoothController;
53 BluetoothController.class,
103 if (cls == BluetoothController.class) { in getLeakChecker()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DBluetoothController.java21 import com.android.systemui.statusbar.policy.BluetoothController.Callback;
26 public interface BluetoothController extends CallbackController<Callback>, Dumpable { interface
DBluetoothControllerImpl.java58 public class BluetoothControllerImpl implements BluetoothController, BluetoothCallback,
453 private final ArrayList<BluetoothController.Callback> mCallbacks = new ArrayList<>();
474 mCallbacks.add((BluetoothController.Callback) msg.obj); in handleMessage()
477 mCallbacks.remove((BluetoothController.Callback) msg.obj); in handleMessage()
483 for (BluetoothController.Callback cb : mCallbacks) { in firePairedDevicesChanged()
489 for (BluetoothController.Callback cb : mCallbacks) { in fireStateChange()
494 private void fireStateChange(BluetoothController.Callback cb) { in fireStateChange()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DBluetoothTile.java55 import com.android.systemui.statusbar.policy.BluetoothController;
67 private final BluetoothController mController;
80 BluetoothController bluetoothController in BluetoothTile()
259 private final BluetoothController.Callback mCallback = new BluetoothController.Callback() {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/dagger/
DStatusBarPolicyModule.java25 import com.android.systemui.statusbar.policy.BluetoothController;
68 BluetoothController provideBluetoothController(BluetoothControllerImpl controllerImpl); in provideBluetoothController()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
DTileServicesTest.java54 import com.android.systemui.statusbar.policy.BluetoothController;
105 mDependency.injectMockDependency(BluetoothController.class); in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPhoneStatusBarPolicy.java58 import com.android.systemui.statusbar.policy.BluetoothController;
90 implements BluetoothController.Callback,
159 private BluetoothController mBluetooth;
167 BluetoothController bluetoothController, NextAlarmController nextAlarmController, in PhoneStatusBarPolicy()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java109 import com.android.systemui.statusbar.policy.BluetoothController;
246 @Inject Lazy<BluetoothController> mBluetoothController;
389 mProviders.put(BluetoothController.class, mBluetoothController::get); in start()