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

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dplugins.c305 krb5int_plugin_file_handle_array_init (struct plugin_file_handle ***harray) argument
309 *harray = calloc (1, sizeof (**harray)); /* calloc initializes to NULL */
310 if (*harray == NULL) { err = errno; }
316 krb5int_plugin_file_handle_array_add (struct plugin_file_handle ***harray, int *count, argument
323 newharray = realloc (*harray, ((newcount + 1) * sizeof (**harray))); /* +1 for NULL */
330 *harray = newharray;
337 krb5int_plugin_file_handle_array_free (struct plugin_file_handle **harray) argument
339 if (harray !
[all...]

Completed in 52 milliseconds