/third_party/musl/src/process/ |
D | posix_spawn_file_actions_adddup2.c | 6 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *fa, int srcfd, int fd) in posix_spawn_file_actions_adddup2() argument 8 if (srcfd < 0 || fd < 0) return EBADF; in posix_spawn_file_actions_adddup2() 12 op->srcfd = srcfd; in posix_spawn_file_actions_adddup2()
|
D | fdop.h | 9 int cmd, fd, srcfd, oflag; member
|
D | posix_spawn.c | 104 fd = op->srcfd; in child()
|
/third_party/musl/porting/liteos_a/user/src/process/ |
D | posix_spawn_file_actions_adddup2.c | 7 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *fa, int srcfd, int fd) in posix_spawn_file_actions_adddup2() argument 9 if (srcfd < 0 || fd < 0) return EBADF; in posix_spawn_file_actions_adddup2() 14 op->srcfd = srcfd; in posix_spawn_file_actions_adddup2()
|
D | posix_spawn.c | 105 fd = op->srcfd; in child()
|
/third_party/ltp/testcases/kernel/io/ltp-aiodio/ |
D | aiocp.c | 52 static int srcfd; // source fd variable 268 if (iocb->aio_fildes == srcfd) in rd_done() 399 if ((srcfd = open(srcname = *argv, source_open_flag)) < 0) { in main() 405 if (fstat(srcfd, &st) < 0) { in main() 518 io_prep_pread(io, srcfd, io->u.c.buf, in main() 580 if (srcfd != -1) in main() 581 close(srcfd); in main()
|
/third_party/toybox/toys/pending/ |
D | crontab.c | 270 int srcfd, destfd, status; in do_edit() local 282 srcfd = xopenro(toybuf); in do_edit() 283 xsendfile(srcfd, destfd); in do_edit() 284 xclose(srcfd); in do_edit()
|
/third_party/node/deps/uv/src/unix/ |
D | fs.c | 1268 uv_file srcfd; in uv__fs_copyfile() local 1284 srcfd = uv_fs_open(NULL, &fs_req, req->path, O_RDONLY, 0, NULL); in uv__fs_copyfile() 1287 if (srcfd < 0) in uv__fs_copyfile() 1288 return srcfd; in uv__fs_copyfile() 1291 if (fstat(srcfd, &src_statsbuf)) { in uv__fs_copyfile() 1359 if (ioctl(dstfd, FICLONE, srcfd) == 0) { in uv__fs_copyfile() 1383 uv_fs_sendfile(NULL, &fs_req, dstfd, srcfd, in_offset, bytes_chunk, NULL); in uv__fs_copyfile() 1403 err = uv__close_nocheckstdio(srcfd); in uv__fs_copyfile()
|
/third_party/libuv/src/unix/ |
D | fs.c | 1289 uv_file srcfd; in uv__fs_copyfile() local 1305 srcfd = uv_fs_open(NULL, &fs_req, req->path, O_RDONLY, 0, NULL); in uv__fs_copyfile() 1308 if (srcfd < 0) in uv__fs_copyfile() 1309 return srcfd; in uv__fs_copyfile() 1312 if (fstat(srcfd, &src_statsbuf)) { in uv__fs_copyfile() 1380 if (ioctl(dstfd, FICLONE, srcfd) == 0) { in uv__fs_copyfile() 1404 uv_fs_sendfile(NULL, &fs_req, dstfd, srcfd, in_offset, bytes_chunk, NULL); in uv__fs_copyfile() 1424 err = uv__close_nocheckstdio(srcfd); in uv__fs_copyfile()
|
/third_party/mksh/ |
D | histrap.c | 722 hist_persist_back(int srcfd) in hist_persist_back() argument 730 if ((tot = lseek(srcfd, (off_t)0, SEEK_END)) < 0 || in hist_persist_back() 731 lseek(srcfd, (off_t)0, SEEK_SET) < 0 || in hist_persist_back() 740 if ((n = blocking_read(srcfd, (cp = buf), in hist_persist_back()
|
/third_party/rust/crates/rustix/src/backend/libc/fs/ |
D | syscalls.rs | 716 srcfd: BorrowedFd<'_>, in fclonefileat() 723 srcfd: BorrowedFd<'_>, in fclonefileat() 730 unsafe { ret(fclonefileat(srcfd, dst_dirfd, c_str(dst), flags.bits())) } in fclonefileat()
|
/third_party/rust/crates/libc/src/unix/bsd/apple/ |
D | mod.rs | 5618 srcfd: ::c_int, in fclonefileat()
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 31929 __u32 srcfd; member
|