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

/osnet-11/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dplugins.c454 krb5int_plugin_file_handle_array_init (struct plugin_file_handle ***harray) argument
458 *harray = calloc (1, sizeof (**harray)); /* calloc initializes to NULL */
459 if (*harray == NULL) { err = ENOMEM; }
465 krb5int_plugin_file_handle_array_add (struct plugin_file_handle ***harray, size_t *count, argument
472 newharray = realloc (*harray, ((newcount + 1) * sizeof (**harray))); /* +1 for NULL */
479 *harray = newharray;
486 krb5int_plugin_file_handle_array_free (struct plugin_file_handle **harray) argument
488 if (harray !
[all...]

Completed in 16 milliseconds