HomeSort by: relevance | last modified time | path
    Searched refs:tofd (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/arch/zaurus/stand/zboot/
loadfile_zboot.c 107 int tofd; local in function:zboot_exec
126 tofd = uopen(_PATH_ZBOOT, LINUX_O_WRONLY);
127 if (tofd == -1) {
132 if (uwrite(tofd, bibuf, p - bibuf) != p - bibuf)
136 uclose(tofd);
141 tofd = uopen(_PATH_ZBOOT, LINUX_O_WRONLY);
142 if (tofd == -1) {
153 if ((sz = uwrite(tofd, buf, sz)) != sizeof(buf)) {
164 if (sz >= 0 && uwrite(tofd, buf, sz) != sz) {
169 uclose(tofd);
    [all...]
  /src/usr.bin/patch/
util.c 172 int tofd, fromfd; local in function:copy_file
175 tofd = open(to, O_CREAT|O_TRUNC|O_WRONLY, 0666);
176 if (tofd < 0)
182 if (write(tofd, buf, i) != i)
185 close(tofd);
  /src/sys/compat/linux/common/
linux_file.c 1027 syscallarg(int) tofd;
1035 SCARG(&ua, tofd) = SCARG(uap, tofd);
  /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
netbsd_syscall_hooks.h 2525 #define __sanitizer_syscall_pre_renameat(fromfd, from, tofd, to) \
2527 (long long)(from), (long long)(tofd), \
2529 #define __sanitizer_syscall_post_renameat(res, fromfd, from, tofd, to) \
2531 (long long)(from), (long long)(tofd), \
4592 long long tofd, long long to);
4594 long long from, long long tofd,
  /src/sys/kern/
vfs_syscalls.c 4386 syscallarg(int) tofd;
4391 SCARG(uap, tofd), SCARG(uap, to), UIO_USERSPACE, 0);
4432 do_sys_renameat(struct lwp *l, int fromfd, const char *from, int tofd,
4443 KASSERT(l != NULL || tofd == AT_FDCWD);
4527 if ((error = fd_nameiat(l, tofd, &tnd)) != 0)
systrace_args.c 3496 iarg[2] = SCARG(p, tofd); /* int */
  /src/sys/compat/linux/arch/aarch64/
linux_systrace_args.c 292 iarg[2] = SCARG(p, tofd); /* int */
1783 iarg[2] = SCARG(p, tofd); /* int */
linux_syscallargs.h 1099 syscallarg(int) tofd;
  /src/lib/librumphijack/
hijack.c 1354 linkat(int fromfd, const char *from, int tofd, const char *to, int flags)
1356 if (fromfd != AT_FDCWD || tofd != AT_FDCWD
  /src/sys/compat/netbsd32/
netbsd32_fs.c 1165 syscallarg(int) tofd;
1172 NETBSD32TO64_UAP(tofd);
netbsd32_syscallargs.h 2480 syscallarg(int) tofd;
  /src/sys/compat/linux/arch/alpha/
linux_syscallargs.h 1375 syscallarg(int) tofd;
  /src/sys/compat/linux/arch/amd64/
linux_syscallargs.h 1265 syscallarg(int) tofd;
linux_systrace_args.c 1810 iarg[2] = SCARG(p, tofd); /* int */
2099 iarg[2] = SCARG(p, tofd); /* int */
  /src/sys/compat/linux/arch/arm/
linux_syscallargs.h 1339 syscallarg(int) tofd;
linux_systrace_args.c 1909 iarg[2] = SCARG(p, tofd); /* int */
2198 iarg[2] = SCARG(p, tofd); /* int */
  /src/sys/compat/linux/arch/i386/
linux_syscallargs.h 1361 syscallarg(int) tofd;
linux_systrace_args.c 1972 iarg[2] = SCARG(p, tofd); /* int */
2230 iarg[2] = SCARG(p, tofd); /* int */
  /src/sys/compat/linux/arch/m68k/
linux_syscallargs.h 1313 syscallarg(int) tofd;
  /src/sys/compat/linux/arch/mips/
linux_syscallargs.h 1385 syscallarg(int) tofd;
  /src/sys/compat/linux/arch/powerpc/
linux_syscallargs.h 1272 syscallarg(int) tofd;
  /src/sys/rump/librump/rumpkern/
rump_syscalls.c 5830 rump___sysimpl_renameat(int fromfd, const char * from, int tofd, const char * to)
5840 SPARG(&callarg, tofd) = tofd;
  /src/sys/compat/linux32/arch/amd64/
linux32_systrace_args.c 1801 iarg[2] = SCARG(p, tofd); /* int */
  /src/sys/compat/linux32/arch/aarch64/
linux32_systrace_args.c 1874 iarg[2] = SCARG(p, tofd); /* int */
  /src/sys/sys/
syscallargs.h 3015 syscallarg(int) tofd;

Completed in 1473 milliseconds

1 2