Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Dle_audio.rs135 type LeAudioClientIntf; typedef
137 unsafe fn GetLeAudioClientProfile(btif: *const u8) -> UniquePtr<LeAudioClientIntf>; in GetLeAudioClientProfile()
139 fn init(self: Pin<&mut LeAudioClientIntf>); in init()
140 fn connect(self: Pin<&mut LeAudioClientIntf>, addr: RawAddress); in connect()
141 fn disconnect(self: Pin<&mut LeAudioClientIntf>, addr: RawAddress); in disconnect()
142 fn set_enable_state(self: Pin<&mut LeAudioClientIntf>, addr: RawAddress, enabled: bool); in set_enable_state()
143 fn cleanup(self: Pin<&mut LeAudioClientIntf>); in cleanup()
144 fn remove_device(self: Pin<&mut LeAudioClientIntf>, addr: RawAddress); in remove_device()
145 fn group_add_node(self: Pin<&mut LeAudioClientIntf>, group_id: i32, addr: RawAddress); in group_add_node()
146 fn group_remove_node(self: Pin<&mut LeAudioClientIntf>, group_id: i32, addr: RawAddress); in group_remove_node()
[all …]
/packages/modules/Bluetooth/system/gd/rust/topshim/le_audio/
Dle_audio_shim.h39 LeAudioClientIntf(le_audio::LeAudioClientInterface* intf) : intf_(intf){}; in LeAudioClientIntf() function