Lines Matching defs:dirent
1083 apr_finfo_t dirent;
1095 while (apr_dir_read(&dirent, APR_FINFO_DIRENT | APR_FINFO_TYPE, dirp)
1097 if (dirent.filetype == APR_DIR) {
1098 if (strcmp(dirent.name, ".") && strcmp(dirent.name, "..")) {
1100 dirent.name, NULL));
1109 const char *file = apr_pstrcat(pool, dir, "/", dirent.name, NULL);
1141 apr_finfo_t dirent;
1158 while (apr_dir_read(&dirent, APR_FINFO_DIRENT | APR_FINFO_TYPE, dirp)
1160 int len = strlen(dirent.name);
1162 if (dirent.filetype == APR_DIR && !strncmp(rest, dirent.name, len)) {
1163 dirname = apr_pstrcat(pool, base, "/", dirent.name, NULL);
1170 if (dirent.filetype == APR_DIR) {
1171 if (!strcmp(dirent.name, vdir)) {
1175 if (dirent.filetype == APR_REG) {
1176 if (!strcmp(dirent.name, header) || !strcmp(dirent.name, data)) {