Lines Matching refs:dyn
143 static ref KEY_MINT_DEVICES: Mutex<DevicesMap<dyn IKeyMintDevice>> = Default::default();
145 static ref TIME_STAMP_DEVICE: Mutex<Option<Strong<dyn ISecureClock>>> = Default::default();
214 ) -> Result<(Strong<dyn IKeyMintDevice>, KeyMintHardwareInfo)> { in connect_keymint()
221 let km: Strong<dyn IKeyMintDevice> = in connect_keymint()
235 let keystore_compat_service: Strong<dyn IKeystoreCompatService> = in connect_keymint()
329 ) -> Result<(Strong<dyn IKeyMintDevice>, KeyMintHardwareInfo, Uuid)> { in get_keymint_device()
348 ) -> Result<(Strong<dyn IKeyMintDevice>, KeyMintHardwareInfo)> { in get_keymint_dev_by_uuid()
358 pub fn get_keymint_devices() -> Vec<Strong<dyn IKeyMintDevice>> { in get_keymint_devices()
367 fn connect_secureclock() -> Result<Strong<dyn ISecureClock>> { in connect_secureclock()
383 let keystore_compat_service: Strong<dyn IKeystoreCompatService> = in connect_secureclock()
403 pub fn get_timestamp_service() -> Result<Strong<dyn ISecureClock>> { in get_timestamp_service()