Home
last modified time | relevance | path

Searched defs:HfpIntf (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dhfp.rs191 type HfpIntf; typedef
193 unsafe fn GetHfpProfile(btif: *const u8) -> UniquePtr<HfpIntf>; in GetHfpProfile()
196 fn connect(self: Pin<&mut HfpIntf>, bt_addr: RawAddress) -> u32; in connect()
198 self: Pin<&mut HfpIntf>, in connect_audio()
203 fn set_active_device(self: Pin<&mut HfpIntf>, bt_addr: RawAddress) -> i32; in set_active_device()
204 fn set_volume(self: Pin<&mut HfpIntf>, volume: i8, bt_addr: RawAddress) -> i32; in set_volume()
205 fn set_mic_volume(self: Pin<&mut HfpIntf>, volume: i8, bt_addr: RawAddress) -> u32; in set_mic_volume()
206 fn disconnect(self: Pin<&mut HfpIntf>, bt_addr: RawAddress) -> u32; in disconnect()
207 fn disconnect_audio(self: Pin<&mut HfpIntf>, bt_addr: RawAddress) -> i32; in disconnect_audio()
209 self: Pin<&mut HfpIntf>, in device_status_notification()
[all …]
/aosp_15_r20/packages/modules/Bluetooth/system/gd/rust/topshim/hfp/
Dhfp_shim.h36 HfpIntf(headset::Interface* intf) : intf_(intf) {} in HfpIntf() function