Searched defs:mech_names (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/crypto/api/
H A Dkcf_miscapi.c280 * . mech_names: An array of crypto_mech_name_t previously allocated by
282 * . count: the number of mech names in mech_names
285 * Frees the the mech_names array.
291 crypto_free_mech_list(crypto_mech_name_t *mech_names, uint_t count) argument
293 if ((mech_names != NULL) && (count > 0))
294 kmem_free(mech_names, count * CRYPTO_MAX_MECH_NAME);
/illumos-gate/usr/src/uts/common/crypto/core/
H A Dkcf_cryptoadm.c434 crypto_mech_name_t *mech_names, *resized_array; local
460 mech_names = NULL;
465 mech_names = kmem_alloc(max_count * sizeof (crypto_mech_name_t),
474 mech_names, k))
477 &mech_names[k][0], sizeof (crypto_mech_name_t));
486 bcopy(mech_names, resized_array,
488 kmem_free(mech_names,
490 mech_names = resized_array;
496 *array = mech_names;
843 crypto_mech_name_t *mech_names; local
973 crypto_mech_name_t *mech_names, *p; local
[all...]
/illumos-gate/usr/src/uts/common/c2/
H A Daudit.c1857 audit_cryptoadm(int cmd, char *module_name, crypto_mech_name_t *mech_names, argument
1985 n = snprintf(pb, l, "%s%s", mech_names[i],

Completed in 76 milliseconds