Home
last modified time | relevance | path

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

/system/security/keystore2/src/
Dapc.rs185 confirmation_token_sender: Sender<Vec<u8>>, field
189 fn new(confirmation_token_sender: Sender<Vec<u8>>) -> Self { in new()
190 Self { session: None, rate_limiting: Default::default(), confirmation_token_sender } in new()
204 confirmation_token_sender: Sender<Vec<u8>>, in new_native_binder()
207 Self { state: Arc::new(Mutex::new(ApcState::new(confirmation_token_sender))) }, in new_native_binder()
235 if let Err(e) = state.confirmation_token_sender.send(confirmation_token.to_vec()) { in result()
Dkeystore2_main.rs71 let (confirmation_token_sender, confirmation_token_receiver) = channel(); in main()
89 ApcManager::new_native_binder(confirmation_token_sender).unwrap_or_else(|e| { in main()