Lines Matching refs:ktype
154 struct key_type *ktype; in SYSCALL_DEFINE4() local
196 ktype = key_type_lookup(type); in SYSCALL_DEFINE4()
197 if (IS_ERR(ktype)) { in SYSCALL_DEFINE4()
198 ret = PTR_ERR(ktype); in SYSCALL_DEFINE4()
203 key = request_key_and_link(ktype, description, callout_info, in SYSCALL_DEFINE4()
215 key_type_put(ktype); in SYSCALL_DEFINE4()
544 struct key_type *ktype; in keyctl_keyring_search() local
578 ktype = key_type_lookup(type); in keyctl_keyring_search()
579 if (IS_ERR(ktype)) { in keyctl_keyring_search()
580 ret = PTR_ERR(ktype); in keyctl_keyring_search()
585 key_ref = keyring_search(keyring_ref, ktype, description); in keyctl_keyring_search()
611 key_type_put(ktype); in keyctl_keyring_search()