Lines Matching refs:thisdir
263 dirlist_t *thisdir;
298 thisdir = listhead->dl_next;
300 while (thisdir != listhead) {
301 (void) fprintf(dbfp, "\t%s\n", thisdir->dl_dirname);
302 thisdir = thisdir->dl_next;
307 thisdir = listhead;
344 activeDir = startdir = thisdir;
655 spacecheck(dirlist_t *thisdir, int test_limit, size_t next_buf_size)
665 assert(thisdir != NULL);
667 if (statvfs(thisdir->dl_dirname, &sb) < 0) {
668 thisdir->dl_space = SPACE_FULL;
675 thisdir->dl_space = SPACE_FULL;
677 thisdir->dl_space = fullness_state = PLENTY_SPACE;
680 thisdir->dl_space = SOFT_SPACE;
682 if (thisdir->dl_space == PLENTY_SPACE)
685 return (thisdir->dl_space == test_limit);