| /src/sys/ufs/chfs/ |
| chfs_build.c | 72 struct chfs_dirent *fd, *tmpfd; local 74 TAILQ_FOREACH_SAFE(fd, &vc->scan_dirents, fds, tmpfd) { 115 struct chfs_dirent *fd, *tmpfd; local 140 TAILQ_FOREACH_SAFE(fd, &vc->scan_dirents, fds, tmpfd) { 212 struct chfs_dirent *fd, *tmpfd; local 322 TAILQ_FOREACH_SAFE(fd, &unlinked, fds, tmpfd) { 340 TAILQ_FOREACH_SAFE(fd, &vc->scan_dirents, fds, tmpfd) {
|
| chfs_nodeops.c | 176 struct chfs_dirent *fd, *tmpfd; local 183 TAILQ_FOREACH_SAFE(fd, &parent->dents, fds, tmpfd) {
|
| chfs_scan.c | 216 struct chfs_dirent *fd, *tmpfd; local 229 TAILQ_FOREACH_SAFE(fd, &pvc->scan_dirents, fds, tmpfd) {
|
| chfs_write.c | 469 struct chfs_dirent *fd, *tmpfd; local 481 TAILQ_FOREACH_SAFE(fd, &parent->dents, fds, tmpfd) {
|
| chfs_gc.c | 306 struct chfs_dirent *fd, *tmpfd; local 330 TAILQ_FOREACH_SAFE(fd, &ip->dents, fds, tmpfd) {
|
| /src/lib/libossaudio/ |
| oss4_mixer.c | 593 int tmpfd; local 599 if ((tmpfd = open(devname, O_RDONLY)) != -1 || 600 (tmpfd = open(devname, O_WRONLY)) != -1) { 602 close(tmpfd); 604 } while (tmpfd != -1); 614 int tmpfd; local 620 if ((tmpfd = open(devname, O_RDONLY)) != -1) { 622 close(tmpfd); 624 } while (tmpfd != -1);
|
| /src/usr.bin/mkdep/ |
| mkdep.c | 103 int tmpfd; local 125 if ((tmpfd = mkstemp(tmpfilename)) < 0) 140 (void)dup2(tmpfd, STDOUT_FILENO); 141 (void)close(tmpfd); 160 return tmpfd;
|
| /src/usr.sbin/edquota/ |
| edquota.c | 1242 int tmpfd, const char *tmppath) 1259 if (writeprivs(curprivs, tmpfd, name, idtype, 1266 if (readprivs(curprivs, tmpfd, dflag) < 0) 1278 int tmpfd, i; local 1280 tmpfd = mkstemp(tmppath); 1281 fchown(tmpfd, getuid(), getgid()); 1284 editone(fs, idtype, names[i], tmpfd, tmppath); 1287 close(tmpfd);
|