Lines Matching defs:paths
53 char **paths;
69 * those managed by devfsadm. For paths other than
120 handle->paths = NULL;
132 handle->paths = calloc(n, sizeof (char *));
133 if (handle->paths == NULL) {
153 handle->paths[n] = strdup(dp->d_name);
154 if (handle->paths[n] == NULL) {
170 * Note: only useable with paths mounted on an instance of the
195 handle->paths = NULL;
218 handle->paths = calloc(n, sizeof (char *));
219 if (handle->paths == NULL) {
226 handle->paths[n] = strdup(p);
227 if (handle->paths[n] == NULL) {
289 * Note: only useable with paths mounted on an instance of the
325 if (handle->paths[i])
326 free(handle->paths[i]);
328 free(handle->paths);
339 path = handle->paths[handle->curpath];