Searched refs:SoftwareRotationAdvertiseState (Results 1 – 1 of 1) sorted by relevance
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/ |
D | bluetooth_adv.rs | 1401 enum SoftwareRotationAdvertiseState { enum 1418 state: SoftwareRotationAdvertiseState, 1438 state: SoftwareRotationAdvertiseState::Stopped, in new() 1463 SoftwareRotationAdvertiseState::Pending(id) => Some(*id), in current_id() 1464 SoftwareRotationAdvertiseState::Advertising(id, _, _) => Some(*id), in current_id() 1465 SoftwareRotationAdvertiseState::Stopped => None, in current_id() 1480 matches!(&self.state, SoftwareRotationAdvertiseState::Pending(_)) in is_pending() 1484 matches!(&self.state, SoftwareRotationAdvertiseState::Stopped) in is_stopped() 1510 SoftwareRotationAdvertiseState::Advertising(id, adv_id, handle) => { in stop_current_advertising() 1514 self.state = SoftwareRotationAdvertiseState::Stopped; in stop_current_advertising() [all …]
|