HomeSort by: relevance | last modified time | path
    Searched defs:tmpfd (Results 1 - 16 of 16) sorted by relevancy

  /src/sys/ufs/chfs/
chfs_build.c 72 struct chfs_dirent *fd, *tmpfd; local in function:chfs_build_set_vnodecache_nlink
74 TAILQ_FOREACH_SAFE(fd, &vc->scan_dirents, fds, tmpfd) {
115 struct chfs_dirent *fd, *tmpfd; local in function:chfs_build_remove_unlinked_vnode
140 TAILQ_FOREACH_SAFE(fd, &vc->scan_dirents, fds, tmpfd) {
212 struct chfs_dirent *fd, *tmpfd; local in function:chfs_build_filesystem
322 TAILQ_FOREACH_SAFE(fd, &unlinked, fds, tmpfd) {
340 TAILQ_FOREACH_SAFE(fd, &vc->scan_dirents, fds, tmpfd) {
chfs_build.c 72 struct chfs_dirent *fd, *tmpfd; local in function:chfs_build_set_vnodecache_nlink
74 TAILQ_FOREACH_SAFE(fd, &vc->scan_dirents, fds, tmpfd) {
115 struct chfs_dirent *fd, *tmpfd; local in function:chfs_build_remove_unlinked_vnode
140 TAILQ_FOREACH_SAFE(fd, &vc->scan_dirents, fds, tmpfd) {
212 struct chfs_dirent *fd, *tmpfd; local in function:chfs_build_filesystem
322 TAILQ_FOREACH_SAFE(fd, &unlinked, fds, tmpfd) {
340 TAILQ_FOREACH_SAFE(fd, &vc->scan_dirents, fds, tmpfd) {
chfs_write.c 469 struct chfs_dirent *fd, *tmpfd; local in function:chfs_do_unlink
481 TAILQ_FOREACH_SAFE(fd, &parent->dents, fds, tmpfd) {
chfs_write.c 469 struct chfs_dirent *fd, *tmpfd; local in function:chfs_do_unlink
481 TAILQ_FOREACH_SAFE(fd, &parent->dents, fds, tmpfd) {
chfs_nodeops.c 176 struct chfs_dirent *fd, *tmpfd; local in function:chfs_add_fd_to_inode
183 TAILQ_FOREACH_SAFE(fd, &parent->dents, fds, tmpfd) {
chfs_scan.c 216 struct chfs_dirent *fd, *tmpfd; local in function:chfs_add_fd_to_list
229 TAILQ_FOREACH_SAFE(fd, &pvc->scan_dirents, fds, tmpfd) {
chfs_nodeops.c 176 struct chfs_dirent *fd, *tmpfd; local in function:chfs_add_fd_to_inode
183 TAILQ_FOREACH_SAFE(fd, &parent->dents, fds, tmpfd) {
chfs_scan.c 216 struct chfs_dirent *fd, *tmpfd; local in function:chfs_add_fd_to_list
229 TAILQ_FOREACH_SAFE(fd, &pvc->scan_dirents, fds, tmpfd) {
chfs_gc.c 306 struct chfs_dirent *fd, *tmpfd; local in function:chfs_clear_inode
330 TAILQ_FOREACH_SAFE(fd, &ip->dents, fds, tmpfd) {
chfs_gc.c 306 struct chfs_dirent *fd, *tmpfd; local in function:chfs_clear_inode
330 TAILQ_FOREACH_SAFE(fd, &ip->dents, fds, tmpfd) {
  /src/lib/libossaudio/
oss4_mixer.c 593 int tmpfd; local in function:get_audio_count
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 in function:get_mixer_count
620 if ((tmpfd = open(devname, O_RDONLY)) != -1) {
622 close(tmpfd);
624 } while (tmpfd != -1);
oss4_mixer.c 593 int tmpfd; local in function:get_audio_count
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 in function:get_mixer_count
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 in function:run_cc
125 if ((tmpfd = mkstemp(tmpfilename)) < 0)
140 (void)dup2(tmpfd, STDOUT_FILENO);
141 (void)close(tmpfd);
160 return tmpfd;
mkdep.c 103 int tmpfd; local in function:run_cc
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 in function:edit
1280 tmpfd = mkstemp(tmppath);
1281 fchown(tmpfd, getuid(), getgid());
1284 editone(fs, idtype, names[i], tmpfd, tmppath);
1287 close(tmpfd);
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 in function:edit
1280 tmpfd = mkstemp(tmppath);
1281 fchown(tmpfd, getuid(), getgid());
1284 editone(fs, idtype, names[i], tmpfd, tmppath);
1287 close(tmpfd);

Completed in 31 milliseconds