Lines Matching refs:paths
53 char **paths; member
120 handle->paths = NULL; in finddev_readdir_alt()
132 handle->paths = calloc(n, sizeof (char *)); in finddev_readdir_alt()
133 if (handle->paths == NULL) { in finddev_readdir_alt()
153 handle->paths[n] = strdup(dp->d_name); in finddev_readdir_alt()
154 if (handle->paths[n] == NULL) { in finddev_readdir_alt()
195 handle->paths = NULL; in finddev_readdir_devfs()
218 handle->paths = calloc(n, sizeof (char *)); in finddev_readdir_devfs()
219 if (handle->paths == NULL) { in finddev_readdir_devfs()
226 handle->paths[n] = strdup(p); in finddev_readdir_devfs()
227 if (handle->paths[n] == NULL) { in finddev_readdir_devfs()
325 if (handle->paths[i]) in finddev_close()
326 free(handle->paths[i]); in finddev_close()
328 free(handle->paths); in finddev_close()
339 path = handle->paths[handle->curpath]; in finddev_next()