Searched refs:BtLeStreamStartedStatus (Results 1 – 6 of 6) sorted by relevance
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/ |
D | le_audio.rs | 79 pub enum BtLeStreamStartedStatus { enum 174 fn get_host_stream_started(self: Pin<&mut LeAudioClientIntf>) -> BtLeStreamStartedStatus; in get_host_stream_started() argument 175 fn get_peer_stream_started(self: Pin<&mut LeAudioClientIntf>) -> BtLeStreamStartedStatus; in get_peer_stream_started() argument 230 pub type BtLeStreamStartedStatus = ffi::BtLeStreamStartedStatus; typedef 367 impl From<BtLeStreamStartedStatus> for i32 { 368 fn from(value: BtLeStreamStartedStatus) -> Self { in from() 370 BtLeStreamStartedStatus::Canceled => -1, in from() 371 BtLeStreamStartedStatus::Idle => 0, in from() 372 BtLeStreamStartedStatus::Started => 1, in from() 378 impl From<i32> for BtLeStreamStartedStatus { implementation [all …]
|
/packages/modules/Bluetooth/system/gd/rust/topshim/le_audio/ |
D | le_audio_shim.h | 31 enum class BtLeStreamStartedStatus : int32_t; 71 BtLeStreamStartedStatus get_host_stream_started(); 72 BtLeStreamStartedStatus get_peer_stream_started();
|
D | le_audio_shim.cc | 488 static BtLeStreamStartedStatus to_rust_btle_stream_started_status( in to_rust_btle_stream_started_status() 492 return BtLeStreamStartedStatus::Canceled; in to_rust_btle_stream_started_status() 494 return BtLeStreamStartedStatus::Idle; in to_rust_btle_stream_started_status() 496 return BtLeStreamStartedStatus::Started; in to_rust_btle_stream_started_status() 500 return BtLeStreamStartedStatus{}; in to_rust_btle_stream_started_status() 503 BtLeStreamStartedStatus LeAudioClientIntf::get_host_stream_started() { in get_host_stream_started() 507 BtLeStreamStartedStatus LeAudioClientIntf::get_peer_stream_started() { in get_peer_stream_started()
|
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/ |
D | iface_bluetooth_media.rs | 11 BtLePcmConfig, BtLeStreamStartedStatus, 72 impl_dbus_arg_from_into!(BtLeStreamStartedStatus, i32); 461 fn get_host_stream_started(&mut self) -> BtLeStreamStartedStatus { in get_host_stream_started() argument 466 fn get_peer_stream_started(&mut self) -> BtLeStreamStartedStatus { in get_peer_stream_started() argument
|
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/ |
D | bluetooth_media.rs | 27 BtLeAudioUnicastMonitorModeStatus, BtLeAudioUsage, BtLePcmConfig, BtLeStreamStartedStatus, 197 fn get_host_stream_started(&mut self) -> BtLeStreamStartedStatus; in get_host_stream_started() argument 198 fn get_peer_stream_started(&mut self) -> BtLeStreamStartedStatus; in get_peer_stream_started() argument 4041 fn get_host_stream_started(&mut self) -> BtLeStreamStartedStatus { in get_host_stream_started() argument 4046 BtLeStreamStartedStatus::Idle in get_host_stream_started() 4051 fn get_peer_stream_started(&mut self) -> BtLeStreamStartedStatus { in get_peer_stream_started() argument 4056 BtLeStreamStartedStatus::Idle in get_peer_stream_started()
|
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/ |
D | dbus_iface.rs | 18 BtLePcmConfig, BtLeStreamStartedStatus, 101 impl_dbus_arg_from_into!(BtLeStreamStartedStatus, i32); 2838 fn get_host_stream_started(&mut self) -> BtLeStreamStartedStatus { in get_host_stream_started() argument 2843 fn get_peer_stream_started(&mut self) -> BtLeStreamStartedStatus { in get_peer_stream_started() argument
|