HelenOS sources

vfs_clone          74 uspace/app/getterm/getterm.c 		if (vfs_clone(oldfd, fd, false, &newfd) != EOK)
vfs_clone          67 uspace/app/redir/redir.c 		if (vfs_clone(oldfd, fd, false, &newfd) != EOK)
vfs_clone         158 uspace/lib/bithenge/src/failure.c 		vfs_clone(null, STDOUT_FILENO, false);
vfs_clone         159 uspace/lib/bithenge/src/failure.c 		vfs_clone(null, STDERR_FILENO, false);
vfs_clone          90 uspace/lib/c/generic/elf/elf_mod.c 	errno_t rc = vfs_clone(file, -1, true, &ofile);
vfs_clone         143 uspace/lib/c/generic/io/io.c 		(void) vfs_clone(infd, -1, false, &stdinfd);
vfs_clone         155 uspace/lib/c/generic/io/io.c 		(void) vfs_clone(outfd, -1, false, &stdoutfd);
vfs_clone         158 uspace/lib/c/generic/io/io.c 			(void) vfs_clone(outfd, -1, false, &stdoutfd);
vfs_clone         169 uspace/lib/c/generic/io/io.c 		(void) vfs_clone(errfd, -1, false, &stderrfd);
vfs_clone         172 uspace/lib/c/generic/io/io.c 			(void) vfs_clone(errfd, -1, false, &stderrfd);
vfs_clone        1009 uspace/lib/c/generic/vfs/vfs.c 		errno_t rc = vfs_clone(root_fd, -1, true, &fd);
vfs_clone        1031 uspace/lib/c/generic/vfs/vfs.c 	errno_t rc = vfs_clone(nroot, -1, true, &new_root);
vfs_clone          84 uspace/lib/c/include/vfs/vfs.h extern errno_t vfs_clone(int, int, bool, int *);
vfs_clone          84 uspace/lib/posix/include/libc/vfs/vfs.h extern errno_t vfs_clone(int, int, bool, int *);
vfs_clone         396 uspace/lib/posix/src/unistd.c 	if (failed(vfs_clone(fildes, fildes2, false, &file))) {
HelenOS homepage, sources at GitHub