Home
last modified time | relevance | path

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

/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
H A DHeadsetClientStateMachineFactory.java28 NativeInterface nativeInterface) { in make() argument
29 return HeadsetClientStateMachine.make(context, t.getLooper(), nativeInterface); in make()
H A DVendorCommandResponseProcessor.java74 VendorCommandResponseProcessor(HeadsetClientService context, NativeInterface nativeInterface) { in VendorCommandResponseProcessor() argument
76 mNativeInterface = nativeInterface; in VendorCommandResponseProcessor()
H A DHeadsetClientStateMachine.java761 NativeInterface nativeInterface) { in HeadsetClientStateMachine() argument
764 mNativeInterface = nativeInterface; in HeadsetClientStateMachine()
805 NativeInterface nativeInterface) { in make() argument
808 nativeInterface); in make()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetObjectsFactory.java75 HeadsetNativeInterface nativeInterface, HeadsetSystemInterface systemInterface) { in makeStateMachine() argument
77 nativeInterface, systemInterface); in makeStateMachine()
H A DAtPhonebook.java101 public AtPhonebook(Context context, HeadsetNativeInterface nativeInterface) { in AtPhonebook() argument
105 mNativeInterface = nativeInterface; in AtPhonebook()
H A DHeadsetStateMachine.java176 HeadsetNativeInterface nativeInterface, HeadsetSystemInterface systemInterface) { in HeadsetStateMachine() argument
183 Objects.requireNonNull(nativeInterface, "nativeInterface cannot be null"); in HeadsetStateMachine()
203 HeadsetNativeInterface nativeInterface, HeadsetSystemInterface systemInterface) { in make() argument
206 nativeInterface, systemInterface); in make()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/le_audio/
H A DLeAudioStateMachine.java92 LeAudioNativeInterface nativeInterface, Looper looper) { in LeAudioStateMachine() argument
96 mNativeInterface = nativeInterface; in LeAudioStateMachine()
112 LeAudioNativeInterface nativeInterface, Looper looper) { in make() argument
114 … LeAudioStateMachine LeAudioSm = new LeAudioStateMachine(device, svc, nativeInterface, looper); in make()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/hid/
H A DHidDeviceNativeInterface.java73 private static void setInstance(HidDeviceNativeInterface nativeInterface) { in setInstance() argument
74 sInstance = nativeInterface; in setInstance()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/hearingaid/
H A DHearingAidStateMachine.java96 HearingAidNativeInterface nativeInterface, Looper looper) { in HearingAidStateMachine() argument
100 mNativeInterface = nativeInterface; in HearingAidStateMachine()
116 HearingAidNativeInterface nativeInterface, Looper looper) { in make() argument
119 nativeInterface, looper); in make()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
H A DAvrcpVolumeManager.java96 AvrcpNativeInterface nativeInterface) { in AvrcpVolumeManager() argument
99 mNativeInterface = nativeInterface; in AvrcpVolumeManager()
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hid/
H A DHidDeviceTest.java130 HidDeviceNativeInterface nativeInterface = in setUp() local
132 Assert.assertEquals(nativeInterface, mHidDeviceNativeInterface); in setUp()