Searched defs:LeAudioClientIntf (Results 1 – 2 of 2) sorted by relevance
135 type LeAudioClientIntf; typedef137 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 …]
39 LeAudioClientIntf(le_audio::LeAudioClientInterface* intf) : intf_(intf){}; in LeAudioClientIntf() function