Searched refs:SoftwareRotationAdvertiseState (Results 1 – 1 of 1) sorted by relevance
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/ |
D | bluetooth_adv.rs | 1428 enum SoftwareRotationAdvertiseState { enum 1445 state: SoftwareRotationAdvertiseState, 1465 state: SoftwareRotationAdvertiseState::Stopped, in new() 1490 SoftwareRotationAdvertiseState::Pending(id) => Some(*id), in current_id() 1491 SoftwareRotationAdvertiseState::Advertising(id, _, _) => Some(*id), in current_id() 1492 SoftwareRotationAdvertiseState::Stopped => None, in current_id() 1507 matches!(&self.state, SoftwareRotationAdvertiseState::Pending(_)) in is_pending() 1511 matches!(&self.state, SoftwareRotationAdvertiseState::Stopped) in is_stopped() 1537 SoftwareRotationAdvertiseState::Advertising(id, adv_id, handle) => { in stop_current_advertising() 1541 self.state = SoftwareRotationAdvertiseState::Stopped; in stop_current_advertising() [all …]
|