Lines Matching refs:km_ta
107 km_ta: Rc<RefCell<KeyMintTa>>, field
112 fn new(km_ta: Rc<RefCell<KeyMintTa>>) -> Self { in new()
113 KMService { km_ta } in new()
119 let resp = self.km_ta.borrow_mut().process(req_data); in handle_message()
206 km_ta: Rc<RefCell<KeyMintTa>>, field
213 fn new(km_ta: Rc<RefCell<KeyMintTa>>) -> Self { in new()
215 km_ta, in new()
223 self.km_ta.borrow().is_hal_info_set() in boot_done()
249 if let Err(e) = self.km_ta.borrow_mut().set_boot_info(boot_info) { in maybe_set_boot_info()
443 km_ta: Rc<RefCell<KeyMintTa>>, field
448 fn new(km_ta: Rc<RefCell<KeyMintTa>>) -> Self { in new()
449 KMSecureService { km_ta } in new()
457 match self.km_ta.borrow().get_hmac_key() { in handle_message()
468 device_ids: self.km_ta.borrow().rpc_device_info()?, in handle_message()
567 let km_ta = Rc::new(RefCell::new(KeyMintTa::new(hw_info, rpc_info, imp, dev))); in handle_port_connections() localVariable
568 let ns_service = KMService::new(Rc::clone(&km_ta)); in handle_port_connections()
569 let legacy_service = KMLegacyService::new(Rc::clone(&km_ta)); in handle_port_connections()
570 let sec_service = KMSecureService::new(km_ta); in handle_port_connections()