Lines Matching full:store
39 * @page page_keyset Certificate store operations
41 * Type of certificates store:
98 * Open or creates a new hx509 certificate store.
101 * @param name name of the store, format is TYPE:type-specific-string,
102 * if NULL is used the MEMORY store is used.
106 * @param lock a lock that unlocks the certificates store, use NULL to
170 * Write the certificate store to stable storage.
173 * @param certs a certificate store to store.
175 * @param lock a lock that unlocks the certificates store, use NULL to
179 * the certificate store doesn't support the store operation.
190 if (certs->ops->store == NULL) { in hx509_certs_store()
193 "store operation", in hx509_certs_store()
198 return (*certs->ops->store)(context, certs, certs->ops_data, flags, lock); in hx509_certs_store()
216 * Free a certificate store.
218 * @param certs certificate store to free.
242 * @param certs certificate store to iterate over
247 * returned if the certificate store doesn't support the iteration
279 * @param certs certificate store to iterate over.
281 * @param cert return certificate next in store, NULL if the store
303 * @param certs certificate store to iterate over.
325 * @param certs certificate store to iterate over.
374 * @param certs certificate store to iterate over.
398 * @param certs certificate store to iterate over.
453 * Add a certificate to the certificiate store.
460 * @param certs certificate store to add the certificate to.
485 * @param certs certificate store to search.
549 * @param certs certificate store to search.
551 * @param result the filtered certificate store, caller must free with
623 * Merge a certificate store into another. The from store is keep
627 * @param to the store to merge into.
628 * @param from the store to copy the object from.
648 * @param to the store to merge into.
649 * @param lock a lock that unlocks the certificates store, use NULL to
651 * @param name name of the source store
676 * Get one random certificate from the certificate store.
679 * @param certs a certificate store to get the certificate from.
716 * Print some info about the certificate store.
719 * @param certs certificate store to print information about.