Lines Matching defs:description
7 * RxRPC keys should have a description of describing their purpose:
34 * description and the key material as the payload.
48 * Vet the description for an RxRPC server key.
113 seq_puts(m, key->description);
124 char *description;
131 description = memdup_sockptr_nul(optval, optlen);
132 if (IS_ERR(description))
133 return PTR_ERR(description);
135 key = request_key(&key_type_keyring, description, NULL);
137 kfree(description);
143 kfree(description);