Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/rust/src/connection/
Dattempt_manager.rs23 id: AttemptId,
35 pub struct AttemptId(u64); struct
39 attempt_id: AttemptId,
45 pub id: AttemptId,
64 Self { attempt_id: AttemptId(0), attempts: HashMap::new() } in new()
67 fn new_attempt_id(&mut self) -> AttemptId { in new_attempt_id() argument
68 let AttemptId(id) = self.attempt_id; in new_attempt_id() localVariable
69 self.attempt_id = AttemptId(id.wrapping_add(1)); in new_attempt_id()
70 AttemptId(id) in new_attempt_id()
117 ) -> Result<AttemptId, CreateConnectionFailure> { in register_background_connection() argument
[all …]