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.java110 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testAsyncBondState()
131 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testAsyncConnectionState()
154 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testNullAsync_DoesNotCrash()
209 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.java55 public class BluetoothControllerImpl implements BluetoothController, BluetoothCallback,
419 private final ArrayList<BluetoothController.Callback> mCallbacks = new ArrayList<>();
440 mCallbacks.add((BluetoothController.Callback) msg.obj); in handleMessage()
443 mCallbacks.remove((BluetoothController.Callback) msg.obj); in handleMessage()
449 for (BluetoothController.Callback cb : mCallbacks) { in firePairedDevicesChanged()
455 for (BluetoothController.Callback cb : mCallbacks) { in fireStateChange()
460 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.java86 import com.android.systemui.statusbar.policy.BluetoothController;
198 @Inject Lazy<BluetoothController> mBluetoothController;
328 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()