Lines Matching refs:d_name
111 while (dp1 != edp1 && strcmp((*dp1)->d_name, start) < 0)
113 while (dp2 != edp2 && strcmp((*dp2)->d_name, start) < 0)
125 ignore_file_case ? strcasecmp(dent1->d_name, dent2->d_name) :
126 strcmp(dent1->d_name, dent2->d_name) ;
138 print_only(path1, dirlen1, dent1->d_name);
148 print_only(path2, dirlen2, dent2->d_name);
176 strlcpy(path1 + plen1, dp->d_name, PATH_MAX - plen1);
182 if (ignore_file_case && strcasecmp(dp2->d_name, dp2->d_name) == 0)
183 strlcpy(path2 + plen2, dp2->d_name, PATH_MAX - plen2);
185 strlcpy(path2 + plen2, dp->d_name, PATH_MAX - plen2);
296 if (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' ||
297 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
302 if (fnmatch(excl->pattern, dp->d_name, FNM_PATHNAME) == 0)