Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DBluetoothControllerImplTest.java109 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testAsyncBondState()
130 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testAsyncConnectionState()
153 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testNullAsync_DoesNotCrash()
208 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.java27 import com.android.systemui.statusbar.policy.BluetoothController;
55 BluetoothController.class,
105 if (cls == BluetoothController.class) { in getLeakChecker()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DBluetoothControllerImpl.java54 public class BluetoothControllerImpl implements BluetoothController, BluetoothCallback,
352 private final ArrayList<BluetoothController.Callback> mCallbacks = new ArrayList<>();
373 mCallbacks.add((BluetoothController.Callback) msg.obj); in handleMessage()
376 mCallbacks.remove((BluetoothController.Callback) msg.obj); in handleMessage()
382 for (BluetoothController.Callback cb : mCallbacks) { in firePairedDevicesChanged()
388 for (BluetoothController.Callback cb : mCallbacks) { in fireStateChange()
393 private void fireStateChange(BluetoothController.Callback cb) { in fireStateChange()
DBluetoothController.java21 import com.android.systemui.statusbar.policy.BluetoothController.Callback;
26 public interface BluetoothController extends CallbackController<Callback>, Dumpable { interface
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/statusbar/car/
DConnectedDeviceSignalController.java41 import com.android.systemui.statusbar.policy.BluetoothController;
47 BluetoothController.Callback {
80 private final BluetoothController mController;
107 mController = Dependency.get(BluetoothController.class); in ConnectedDeviceSignalController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DBluetoothTile.java47 import com.android.systemui.statusbar.policy.BluetoothController;
59 private final BluetoothController mController;
65 BluetoothController bluetoothController, in BluetoothTile()
249 private final BluetoothController.Callback mCallback = new BluetoothController.Callback() {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
DTileServicesTest.java40 import com.android.systemui.statusbar.policy.BluetoothController;
63 mDependency.injectMockDependency(BluetoothController.class); in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependencyBinder.java41 import com.android.systemui.statusbar.policy.BluetoothController;
92 public abstract BluetoothController provideBluetoothController( in provideBluetoothController()
DDependency.java89 import com.android.systemui.statusbar.policy.BluetoothController;
204 @Inject Lazy<BluetoothController> mBluetoothController;
323 mProviders.put(BluetoothController.class, mBluetoothController::get); in start()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPhoneStatusBarPolicy.java48 import com.android.systemui.statusbar.policy.BluetoothController;
72 implements BluetoothController.Callback,
128 private BluetoothController mBluetooth;
136 mBluetooth = Dependency.get(BluetoothController.class); in PhoneStatusBarPolicy()