Home
last modified time | relevance | path

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

/system/hardware/interfaces/keystore2/aidl/android/system/keystore2/
DIKeystoreService.aidl190 void ungrant(in KeyDescriptor key, in int granteeUid); in ungrant() method
/system/hardware/interfaces/keystore2/aidl/aidl_api/android.system.keystore2/current/android/system/keystore2/
DIKeystoreService.aidl44 void ungrant(in android.system.keystore2.KeyDescriptor key, in int granteeUid); in ungrant() method
/system/hardware/interfaces/keystore2/aidl/aidl_api/android.system.keystore2/1/android/system/keystore2/
DIKeystoreService.aidl44 void ungrant(in android.system.keystore2.KeyDescriptor key, in int granteeUid); in ungrant() method
/system/security/keystore2/src/
Dservice.rs343 fn ungrant(&self, key: &KeyDescriptor, grantee_uid: i32) -> Result<()> { in ungrant() method
345 db.borrow_mut().ungrant(&key, ThreadState::get_calling_uid(), grantee_uid as u32, |k| { in ungrant()
403 fn ungrant(&self, key: &KeyDescriptor, grantee_uid: i32) -> binder::public_api::Result<()> { in ungrant() method
405 map_or_log_err(self.ungrant(key, grantee_uid), Ok) in ungrant()
Ddatabase.rs3098 pub fn ungrant( in ungrant() method
3836 db.ungrant(&app_key, CALLER_UID, GRANTEE_UID, |_| Ok(()))?; in test_grant_ungrant()
3837 db.ungrant(&selinux_key, CALLER_UID, GRANTEE_UID, |_| Ok(()))?; in test_grant_ungrant()