Lines Matching defs:description
7 * RxRPC keys should have a description of describing their purpose:
37 * rxrpc defined keys take an arbitrary string as the description and an
54 * description and an 8-byte decryption key as the payload
68 * Vet the description for an RxRPC server key
893 seq_puts(m, key->description);
902 char *description;
909 description = memdup_sockptr_nul(optval, optlen);
910 if (IS_ERR(description))
911 return PTR_ERR(description);
913 key = request_key_net(&key_type_rxrpc, description, sock_net(&rx->sk), NULL);
915 kfree(description);
921 kfree(description);
932 char *description;
939 description = memdup_sockptr_nul(optval, optlen);
940 if (IS_ERR(description))
941 return PTR_ERR(description);
943 key = request_key(&key_type_keyring, description, NULL);
945 kfree(description);
951 kfree(description);
1057 if (memcmp(key->description, "afs@", 4) != 0)
1059 cnlen = strlen(key->description + 4);
1163 ENCODE_DATA(cnlen, key->description + 4); /* cellname */