Lines Matching defs:array
33 * The find_manifests() function can return an array consisting of all the
36 * return of mhash_test_file(). The list that is returned is an array of
78 * (pname) and hash to the array at tsd_array. If necessary, realloc()
223 * This function returns a pointer to an array of manifest_info_t pointers.
225 * directory, dir, that satifies the selection criteria. The array is
226 * returned to arrayp. The array will be terminated with a NULL pointer.
228 * with the array by calling free_manifest_array().
290 * Free the memory associated with the array of manifest_info structures.
293 free_manifest_array(manifest_info_t **array)
298 if (array == NULL)
301 for (entry = array; *entry != NULL; entry++) {
312 free(array);