Searched defs:VolumeControlIntf (Results 1 – 2 of 2) sorted by relevance
28 type VolumeControlIntf; typedef30 unsafe fn GetVolumeControlProfile(btif: *const u8) -> UniquePtr<VolumeControlIntf>; in GetVolumeControlProfile()32 fn init(self: Pin<&mut VolumeControlIntf>); in init()33 fn cleanup(self: Pin<&mut VolumeControlIntf>); in cleanup()34 fn connect(self: Pin<&mut VolumeControlIntf>, addr: RawAddress); in connect()35 fn disconnect(self: Pin<&mut VolumeControlIntf>, addr: RawAddress); in disconnect()36 fn remove_device(self: Pin<&mut VolumeControlIntf>, addr: RawAddress); in remove_device()37 fn set_volume(self: Pin<&mut VolumeControlIntf>, group_id: i32, volume: u8); in set_volume()38 fn mute(self: Pin<&mut VolumeControlIntf>, addr: RawAddress); in mute()39 fn unmute(self: Pin<&mut VolumeControlIntf>, addr: RawAddress); in unmute()[all …]
31 VolumeControlIntf(vc::VolumeControlInterface* intf) : intf_(intf){}; in VolumeControlIntf() function