Lines Matching defs:de
548 struct dirent *de;
560 while ((de = readdir(d)) && max_depth > 0) {
563 LOGV("looking at '%s'\n", de->d_name);
565 if ((de->d_type != DT_DIR && !(de->d_type == DT_LNK && follow_links)) ||
566 de->d_name[0] == '.') {
568 de->d_name, de->d_type, max_depth, follow_links);
571 LOGV("can descend into '%s'\n", de->d_name);
573 fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
575 LOGE("cannot openat %d '%s' (%d: %s)\n", dfd, de->d_name,
584 LOGV("opened '%s'\n", de->d_name);