Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/
H A DFakeBluetoothController.java21 import com.android.systemui.statusbar.policy.BluetoothController;
22 import com.android.systemui.statusbar.policy.BluetoothController.Callback;
29 BluetoothController {
H A DLeakCheckedTest.java26 import com.android.systemui.statusbar.policy.BluetoothController;
53 BluetoothController.class,
103 if (cls == BluetoothController.class) { in getLeakChecker()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothController.java23 import com.android.systemui.statusbar.policy.BluetoothController.Callback;
28 public interface BluetoothController extends CallbackController<Callback>, Dumpable { interface
H A DBluetoothControllerImpl.java63 public class BluetoothControllerImpl implements BluetoothController, BluetoothCallback,
462 private final ArrayList<BluetoothController.Callback> mCallbacks = new ArrayList<>();
483 mCallbacks.add((BluetoothController.Callback) msg.obj); in handleMessage()
486 mCallbacks.remove((BluetoothController.Callback) msg.obj); in handleMessage()
492 for (BluetoothController.Callback cb : mCallbacks) { in firePairedDevicesChanged()
498 for (BluetoothController.Callback cb : mCallbacks) { in fireStateChange()
503 private void fireStateChange(BluetoothController.Callback cb) { in fireStateChange()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DBluetoothTile.java53 import com.android.systemui.statusbar.policy.BluetoothController;
69 private final BluetoothController mController;
86 BluetoothController bluetoothController in BluetoothTile()
299 private final BluetoothController.Callback mCallback = new BluetoothController.Callback() {
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/
H A DBluetoothTileTest.kt25 import com.android.systemui.statusbar.policy.BluetoothController
51 @Mock private lateinit var bluetoothController: BluetoothController
222 bluetoothController: BluetoothController,
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DBluetoothControllerImplTest.java241 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testOnACLConnectionStateChange_updatesBluetoothStateOnConnection_repoFlagOff()
263 BluetoothController.Callback callback = mock(BluetoothController.Callback.class); in testOnACLConnectionStateChange_updatesBluetoothStateOnConnection_repoFlagOn()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/dagger/
H A DStatusBarPolicyModule.java34 import com.android.systemui.statusbar.policy.BluetoothController;
85 BluetoothController provideBluetoothController(BluetoothControllerImpl controllerImpl); in provideBluetoothController()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarPolicyTest.kt38 import com.android.systemui.statusbar.policy.BluetoothController
97 @Mock private lateinit var bluetoothController: BluetoothController
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarPolicy.java61 import com.android.systemui.statusbar.policy.BluetoothController;
94 implements BluetoothController.Callback,
168 private BluetoothController mBluetooth;
176 HotspotController hotspotController, BluetoothController bluetoothController, in PhoneStatusBarPolicy()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDependency.java106 import com.android.systemui.statusbar.policy.BluetoothController;
241 @Inject Lazy<BluetoothController> mBluetoothController;
376 mProviders.put(BluetoothController.class, mBluetoothController::get); in start()