Home
last modified time | relevance | path

Searched refs:IBluetoothCallback (Results 1 – 14 of 14) sorted by relevance

/packages/modules/Bluetooth/service/tests/src/com/android/server/bluetooth/
DBluetoothManagerServiceTest.java45 import android.bluetooth.IBluetoothCallback;
259 private static IBluetoothCallback captureBluetoothCallback(AdapterBinder adapterBinder) in captureBluetoothCallback()
261 ArgumentCaptor<IBluetoothCallback> captor = in captureBluetoothCallback()
262 ArgumentCaptor.forClass(IBluetoothCallback.class); in captureBluetoothCallback()
268 IBluetoothCallback transition_offToBleOn() throws Exception { in transition_offToBleOn()
275 IBluetoothCallback btCallback = captureBluetoothCallback(mAdapterBinder); in transition_offToBleOn()
298 private IBluetoothCallback transition_offToOn() throws Exception { in transition_offToOn()
299 IBluetoothCallback btCallback = transition_offToBleOn(); in transition_offToOn()
/packages/modules/Bluetooth/service/src/
DAdapterBinder.kt19 import android.bluetooth.IBluetoothCallback
64 fun registerCallback(callback: IBluetoothCallback, source: AttributionSource) { in registerCallback()
69 fun unregisterCallback(callback: IBluetoothCallback, source: AttributionSource) { in unregisterCallback()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/
DAdapterServiceTest.java40 import android.bluetooth.IBluetoothCallback;
147 private @Mock IBluetoothCallback mIBluetoothCallback;
391 private static void verifyStateChange(IBluetoothCallback cb, int prevState, int currState) { in verifyStateChange()
404 IBluetoothCallback callback, in offToBleOn()
430 IBluetoothCallback callback, in onToBleOn()
475 IBluetoothCallback callback = mock(IBluetoothCallback.class); in doEnable()
529 IBluetoothCallback callback = mock(IBluetoothCallback.class); in doDisable()
712 IBluetoothCallback callback = mock(IBluetoothCallback.class); in startBleOnly_whenScanManagerRefactorFlagIsOn_startAndStopScanController()
756 IBluetoothCallback callback = mock(IBluetoothCallback.class); in startBrDr_whenScanManagerRefactorFlagIsOn_startAndStopScanController()
/packages/modules/Bluetooth/android/app/aidl/android/bluetooth/
DIBluetoothCallback.aidl24 interface IBluetoothCallback interface
DIBluetooth.aidl24 import android.bluetooth.IBluetoothCallback;
160 …oneway void registerCallback(in IBluetoothCallback callback, in AttributionSource attributionSourc… in registerCallback()
162 …oneway void unregisterCallback(in IBluetoothCallback callback, in AttributionSource attributionSou… in unregisterCallback()
/packages/modules/Bluetooth/apex/hiddenapi/
Dhiddenapi-unsupported.txt3 Landroid/bluetooth/IBluetoothCallback$Stub;-><init>()V
Dhiddenapi-max-target-o-low-priority.txt1140 Landroid/bluetooth/IBluetooth$Stub$Proxy;->registerCallback(Landroid/bluetooth/IBluetoothCallback;)V
1158 Landroid/bluetooth/IBluetooth$Stub$Proxy;->unregisterCallback(Landroid/bluetooth/IBluetoothCallback
1270 Landroid/bluetooth/IBluetooth;->registerCallback(Landroid/bluetooth/IBluetoothCallback;)V
1287 Landroid/bluetooth/IBluetooth;->unregisterCallback(Landroid/bluetooth/IBluetoothCallback;)V
1409 Landroid/bluetooth/IBluetoothCallback$Stub$Proxy;-><init>(Landroid/os/IBinder;)V
1410 Landroid/bluetooth/IBluetoothCallback$Stub$Proxy;->getInterfaceDescriptor()Ljava/lang/String;
1411 Landroid/bluetooth/IBluetoothCallback$Stub$Proxy;->mRemote:Landroid/os/IBinder;
1412 Landroid/bluetooth/IBluetoothCallback$Stub$Proxy;->onBluetoothStateChange(II)V
1413 Landroid/bluetooth/IBluetoothCallback$Stub;->asInterface(Landroid/os/IBinder;)Landroid/bluetooth/IB…
1414 Landroid/bluetooth/IBluetoothCallback$Stub;->DESCRIPTOR:Ljava/lang/String;
[all …]
/packages/modules/Bluetooth/android/app/aidl/
DAndroid.bp22 "android/bluetooth/IBluetoothCallback.aidl",
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Diface_bluetooth.rs20 Bluetooth, BluetoothDevice, BtAdapterRole, IBluetooth, IBluetoothCallback,
92 impl IBluetoothCallback for BluetoothCallbackDBus {
482 fn register_callback(&mut self, callback: Box<dyn IBluetoothCallback + Send>) -> u32 { in register_callback()
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth.rs84 fn register_callback(&mut self, callback: Box<dyn IBluetoothCallback + Send>) -> u32; in register_callback()
501 pub trait IBluetoothCallback: RPCProxy { trait
596 callbacks: Callbacks<dyn IBluetoothCallback + Send>,
2159 fn register_callback(&mut self, callback: Box<dyn IBluetoothCallback + Send>) -> u32 { in register_callback()
/packages/modules/Bluetooth/service/src/com/android/server/bluetooth/
DBluetoothManagerService.java49 import android.bluetooth.IBluetoothCallback;
275 private final IBluetoothCallback mBluetoothCallback =
276 new IBluetoothCallback.Stub() {
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dcallbacks.rs23 BluetoothDevice, IBluetooth, IBluetoothCallback, IBluetoothConnectionCallback,
134 impl IBluetoothCallback for BtCallback {
Ddbus_iface.rs30 BluetoothDevice, BtAdapterRole, IBluetooth, IBluetoothCallback, IBluetoothConnectionCallback,
601 impl IBluetoothCallback for IBluetoothCallbackDBus {
748 fn register_callback(&mut self, callback: Box<dyn IBluetoothCallback + Send>) -> u32 { in register_callback()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/
DAdapterService.java69 import android.bluetooth.IBluetoothCallback;
250 private final RemoteCallbackList<IBluetoothCallback> mRemoteCallbacks =
3537 public void registerCallback(IBluetoothCallback callback, AttributionSource source) { in registerCallback()
3551 public void unregisterCallback(IBluetoothCallback callback, AttributionSource source) { in unregisterCallback()
5825 void registerRemoteCallback(IBluetoothCallback callback) { in registerRemoteCallback()
5830 void unregisterRemoteCallback(IBluetoothCallback callback) { in unregisterRemoteCallback()