Lines Matching full:instantiate
204 * returned in an uninstantiated state and the caller needs to instantiate the
420 * Instantiate a key and link it into the target keyring atomically. Must be
441 /* can't instantiate twice */ in __key_instantiate_and_link()
443 /* instantiate the key */ in __key_instantiate_and_link()
444 ret = key->type->instantiate(key, prep); in __key_instantiate_and_link()
482 * key_instantiate_and_link - Instantiate a key and link it into the keyring.
483 * @key: The key to instantiate.
484 * @data: The data to use to instantiate the keyring.
489 * Instantiate a key that's in the uninstantiated state using the provided data
553 * key_reject_and_link - Negatively instantiate a key and link it into the keyring.
554 * @key: The key to instantiate.
560 * Negatively instantiate a key that's in the uninstantiated state and, if
602 /* can't instantiate twice */ in key_reject_and_link()
820 if (!index_key.type->instantiate || in __key_create_or_update()
925 /* instantiate it and link it into the target keyring */ in __key_create_or_update()
975 * key_create_or_update - Update or create and instantiate a key.
979 * @payload: The data to use to instantiate or update the key.
985 * is found, update it, otherwise create and instantiate a new one and create a
1013 * key_create - Create and instantiate a key.
1017 * @payload: The data to use to instantiate or update the key.
1022 * Create and instantiate a new key and link to it from the destination keyring.
1175 * Instantiate a key from preparsed data. We assume we can just copy the data
1178 * This can be pointed to directly by the key type instantiate op pointer.