• Home
  • Raw
  • Download

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()
481 * key_instantiate_and_link - Instantiate a key and link it into the keyring.
482 * @key: The key to instantiate.
483 * @data: The data to use to instantiate the keyring.
488 * Instantiate a key that's in the uninstantiated state using the provided data
552 * key_reject_and_link - Negatively instantiate a key and link it into the keyring.
553 * @key: The key to instantiate.
559 * Negatively instantiate a key that's in the uninstantiated state and, if
601 /* can't instantiate twice */ in key_reject_and_link()
819 if (!index_key.type->instantiate || in __key_create_or_update()
924 /* instantiate it and link it into the target keyring */ in __key_create_or_update()
974 * key_create_or_update - Update or create and instantiate a key.
978 * @payload: The data to use to instantiate or update the key.
984 * is found, update it, otherwise create and instantiate a new one and create a
1012 * key_create - Create and instantiate a key.
1016 * @payload: The data to use to instantiate or update the key.
1021 * Create and instantiate a new key and link to it from the destination keyring.
1174 * Instantiate a key from preparsed data. We assume we can just copy the data
1177 * This can be pointed to directly by the key type instantiate op pointer.