Searched defs:AvrcpIntf (Results 1 – 2 of 2) sorted by relevance
33 type AvrcpIntf; typedef35 unsafe fn GetAvrcpProfile(btif: *const u8) -> UniquePtr<AvrcpIntf>; in GetAvrcpProfile()37 fn init(self: Pin<&mut AvrcpIntf>); in init()38 fn cleanup(self: Pin<&mut AvrcpIntf>); in cleanup()39 fn connect(self: Pin<&mut AvrcpIntf>, bt_addr: RawAddress) -> u32; in connect()40 fn disconnect(self: Pin<&mut AvrcpIntf>, bt_addr: RawAddress) -> u32; in disconnect()41 fn set_volume(self: Pin<&mut AvrcpIntf>, volume: i8); in set_volume()42 fn set_playback_status(self: Pin<&mut AvrcpIntf>, status: &String); in set_playback_status()43 fn set_position(self: Pin<&mut AvrcpIntf>, position_us: i64); in set_position()45 self: Pin<&mut AvrcpIntf>, in set_metadata()[all …]
64 AvrcpIntf(bluetooth::avrcp::ServiceInterface* intf) : intf_(intf) {} in AvrcpIntf() function