Home
last modified time | relevance | path

Searched refs:TurningOn (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/linux/mgmt/src/
Dstate_machine.rs48 TurningOn = 1, // We are not notified that the Bluetooth is running enumerator
769 let queue_present = *present && next_state == ProcessState::TurningOn; in mainloop()
1400 ProcessState::Off | ProcessState::TurningOn if present && floss_enabled => { in action_start_bluetooth()
1402 s.state = ProcessState::TurningOn in action_start_bluetooth()
1405 (ProcessState::TurningOn, CommandTimeoutAction::ResetTimer) in action_start_bluetooth()
1459 ProcessState::TurningOn if present && floss_enabled => { in action_restart_bluetooth()
1523 self.modify_state(hci, |s: &mut AdapterState| s.state = ProcessState::TurningOn); in action_on_bluetooth_stopped()
1525 (ProcessState::TurningOn, CommandTimeoutAction::ResetTimer) in action_on_bluetooth_stopped()
1556 s.state = ProcessState::TurningOn; in action_on_bluetooth_stopped()
1560 (ProcessState::TurningOn, CommandTimeoutAction::ResetTimer) in action_on_bluetooth_stopped()
[all …]
Dbluetooth_manager.rs86 .filter(|a| a.state == ProcessState::TurningOn || a.state == ProcessState::On) in restart_adapters()