Lines Matching refs:paths
51 char **paths; member
118 handle->paths = NULL; in finddev_readdir_alt()
130 handle->paths = calloc(n, sizeof (char *)); in finddev_readdir_alt()
131 if (handle->paths == NULL) { in finddev_readdir_alt()
151 handle->paths[n] = strdup(dp->d_name); in finddev_readdir_alt()
152 if (handle->paths[n] == NULL) { in finddev_readdir_alt()
193 handle->paths = NULL; in finddev_readdir_devfs()
216 handle->paths = calloc(n, sizeof (char *)); in finddev_readdir_devfs()
217 if (handle->paths == NULL) { in finddev_readdir_devfs()
224 handle->paths[n] = strdup(p); in finddev_readdir_devfs()
225 if (handle->paths[n] == NULL) { in finddev_readdir_devfs()
323 if (handle->paths[i]) in finddev_close()
324 free(handle->paths[i]); in finddev_close()
326 free(handle->paths); in finddev_close()
337 path = handle->paths[handle->curpath]; in finddev_next()