Lines Matching defs:dir
54 DIR *dir;
57 dir = opendir(UDEV_ROOT_RUN "/udev/watch.old");
58 if (dir == NULL) {
59 log_error_errno(errno, "unable to open old watches dir " UDEV_ROOT_RUN "/udev/watch.old; old watches will not be restored: %m");
63 for (ent = readdir(dir); ent != NULL; ent = readdir(dir)) {
71 len = readlinkat(dirfd(dir), ent->d_name, device, sizeof(device));
84 unlinkat(dirfd(dir), ent->d_name, 0);
87 closedir(dir);
91 log_error_errno(errno, "unable to move watches dir " UDEV_ROOT_RUN "/udev/watch; old watches will not be restored: %m");