/third_party/ltp/testcases/kernel/syscalls/eventfd2/ |
D | eventfd2_03.c | 80 static void sem_player(int fd1, int fd2) in sem_player() argument 85 fprintf(stdout, "[%u] waiting on %d\n", getpid(), fd2); in sem_player() 86 xsem_wait(fd2); in sem_player() 91 fprintf(stdout, "[%u] waiting on %d\n", getpid(), fd2); in sem_player() 92 xsem_wait(fd2); in sem_player() 97 fprintf(stdout, "[%u] waiting 5 times on %d\n", getpid(), fd2); in sem_player() 98 xsem_wait(fd2); in sem_player() 99 xsem_wait(fd2); in sem_player() 100 xsem_wait(fd2); in sem_player() 101 xsem_wait(fd2); in sem_player() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/memfd_create/ |
D | memfd_create01.c | 130 int fd2; in test_share_dup() local 134 fd2 = SAFE_DUP(fd); in test_share_dup() 135 CHECK_MFD_HAS_SEALS(fd2, 0); in test_share_dup() 139 CHECK_MFD_HAS_SEALS(fd2, F_SEAL_WRITE); in test_share_dup() 141 CHECK_MFD_ADD_SEALS(fd2, F_SEAL_SHRINK); in test_share_dup() 143 CHECK_MFD_HAS_SEALS(fd2, F_SEAL_WRITE | F_SEAL_SHRINK); in test_share_dup() 147 CHECK_MFD_HAS_SEALS(fd2, F_SEAL_WRITE | F_SEAL_SHRINK | F_SEAL_SEAL); in test_share_dup() 150 CHECK_MFD_FAIL_ADD_SEALS(fd2, F_SEAL_GROW); in test_share_dup() 152 CHECK_MFD_FAIL_ADD_SEALS(fd2, F_SEAL_SEAL); in test_share_dup() 154 SAFE_CLOSE(fd2); in test_share_dup() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/kcmp/ |
D | kcmp02.c | 26 static int fd2; variable 41 int *fd2; member 44 {&pid1, &pid_unused, KCMP_FILE, &fd1, &fd2, ESRCH}, 45 {&pid1, &pid1, KCMP_TYPES + 1, &fd1, &fd2, EINVAL}, 46 {&pid1, &pid1, -1, &fd1, &fd2, EINVAL}, 47 {&pid1, &pid1, INT_MIN, &fd1, &fd2, EINVAL}, 48 {&pid1, &pid1, INT_MAX, &fd1, &fd2, EINVAL}, 58 fd2 = SAFE_OPEN(TEST_FILE2, O_CREAT | O_RDWR | O_TRUNC, 0644); in setup() 66 if (fd2 > 0) in cleanup() 67 SAFE_CLOSE(fd2); in cleanup() [all …]
|
D | kcmp01.c | 24 static int fd2; variable 34 int *fd2; member 38 {&pid2, &pid2, KCMP_FILE, &fd1, &fd2, 0}, 40 {&pid1, &pid2, KCMP_FILE, &fd1, &fd2, 0}, 61 fd2 = dup(fd1); in do_child() 62 if (fd2 == -1) { in do_child() 69 *(test->fd1), *(test->fd2))); in do_child() 71 SAFE_CLOSE(fd2); in do_child()
|
/third_party/libdrm/ |
D | libsync.h | 51 int32_t fd2; member 86 static inline int sync_merge(const char *name, int fd1, int fd2) in sync_merge() argument 91 data.fd2 = fd2; in sync_merge() 121 static inline int sync_accumulate(const char *name, int *fd1, int fd2) in sync_accumulate() argument 125 assert(fd2 >= 0); in sync_accumulate() 128 *fd1 = dup(fd2); in sync_accumulate() 132 ret = sync_merge(name, *fd1, fd2); in sync_accumulate()
|
/third_party/python/Python/ |
D | dup2.c | 20 dup2(int fd1, int fd2) in dup2() argument 22 if (fd1 != fd2) { in dup2() 25 if (fcntl(fd2, F_GETFL) >= 0) in dup2() 26 close(fd2); in dup2() 27 if (fcntl(fd1, F_DUPFD, fd2) < 0) in dup2() 30 return fd2; in dup2()
|
/third_party/NuttX/fs/vfs/ |
D | fs_dupfd2.c | 80 int fs_dupfd2(int fd1, int fd2) in fs_dupfd2() argument 82 int dup2(int fd1, int fd2) in fs_dupfd2() 94 ret = fs_getfilep(fd2, &filep2); in fs_dupfd2() 114 if (fd1 == fd2) in fs_dupfd2() 123 return fd2; in fs_dupfd2() 127 clear_fd(fd2); in fs_dupfd2()
|
/third_party/mesa3d/src/util/ |
D | libsync.h | 79 int32_t fd2; 126 static inline int sync_merge(const char *name, int fd1, int fd2) 131 data.fd2 = fd2; 173 static inline int sync_accumulate(const char *name, int *fd1, int fd2) in sync_accumulate() argument 177 assert(fd2 >= 0); in sync_accumulate() 180 *fd1 = dup(fd2); in sync_accumulate() 184 ret = sync_merge(name, *fd1, fd2); in sync_accumulate()
|
/third_party/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl01.c | 48 int fd[10], fd2[10]; in main() local 68 fd2[i] = fd[i]; in main() 79 if (fd[2] < fd2[2]) in main() 83 if ((fd[4] = fcntl(fd[1], F_DUPFD, fd2[3])) < 0) in main() 86 if (fd[4] < fd2[3]) in main() 88 "expect greater than %d", fd[4], fd2[3]); in main() 90 if ((fd[8] = fcntl(fd[1], F_DUPFD, fd2[5])) < 0) in main() 93 if (fd[8] != fd2[5]) in main() 95 "got %d, expected %d", fd[8], fd2[5]); in main()
|
D | fcntl32.c | 36 static int fd2; variable 102 fd2 = SAFE_OPEN(cleanup, "file", test_cases[i].fd2_flag); in verify_fcntl() 124 SAFE_CLOSE(cleanup, fd2); in verify_fcntl() 125 fd2 = 0; in verify_fcntl() 133 if (fd2 > 0 && close(fd2)) in cleanup()
|
/third_party/musl/src/stat/ |
D | fchmodat.c | 15 int ret, fd2; in fchmodat() local 23 if ((fd2 = __syscall(SYS_openat, fd, path, O_RDONLY|O_PATH|O_NOFOLLOW|O_NOCTTY|O_CLOEXEC)) < 0) { in fchmodat() 24 if (fd2 == -ELOOP) in fchmodat() 26 return __syscall_ret(fd2); in fchmodat() 29 __procfdname(proc, fd2); in fchmodat() 36 __syscall(SYS_close, fd2); in fchmodat()
|
/third_party/ltp/testcases/kernel/input/ |
D | input02.c | 39 static int fd2; variable 55 fd2 = open_device(); in main() 64 if (no_events_queued(fd2, 0)) in main() 68 SAFE_CLOSE(NULL, fd2); in main() 92 SAFE_IOCTL(NULL, fd2, EVIOCGRAB, 1); in send_information() 100 SAFE_CLOSE(NULL, fd2); in send_information()
|
D | input04.c | 37 static int fd, fd2; variable 60 if (no_events_queued(fd2, 1)) in main() 84 fd2 = open_device(); in setup() 99 if (fd2 > 0 && close(fd2)) in cleanup()
|
/third_party/libdrm/tests/nouveau/ |
D | threaded.c | 78 int err, fd, fd2; in main() local 88 fd2 = drmOpenWithType("nouveau", NULL, DRM_NODE_RENDER); in main() 94 fd2 = open(device, O_RDWR); in main() 96 fd2 = fd = -errno; in main() 104 if (fd2 < 0) { in main() 122 err = nouveau_device_wrap(fd2, 0, &nvdev2); in main() 144 close(fd2); in main() 147 drmClose(fd2); in main()
|
/third_party/ltp/testcases/kernel/syscalls/lseek/ |
D | lseek07.c | 24 static int fd1, fd2; variable 34 {&fd2, TFILE2, 2, 2, 7, "abijkfg"}, 77 fd2 = SAFE_OPEN(TFILE2, O_RDWR | O_CREAT, 0644); in setup() 80 SAFE_WRITE(1, fd2, WR_STR1, sizeof(WR_STR1) - 1); in setup() 88 if (fd2 > 0) in cleanup() 89 SAFE_CLOSE(fd2); in cleanup()
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
D | linkat.c | 31 int fd2 = -1; in linkat_0100() local 38 int result = linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat.txt", AT_SYMLINK_FOLLOW); in linkat_0100() 52 int fd2 = -1; in linkat_0200() local 61 int result = linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat.txt", AT_SYMLINK_FOLLOW); in linkat_0200() 64 …EXPECT_NE("linkat_0200", linkat(fd1, "/etc/test.txt", fd2, "/etc/linkat.txt", AT_SYMLINK_FOLLOW), … in linkat_0200()
|
/third_party/ltp/testcases/kernel/syscalls/flock/ |
D | flock06.c | 24 int fd1, fd2; in verify_flock() local 33 fd2 = SAFE_OPEN("testfile", O_RDWR); in verify_flock() 34 TEST(flock(fd2, LOCK_EX | LOCK_NB)); in verify_flock() 46 TEST(flock(fd2, LOCK_EX | LOCK_NB)); in verify_flock() 53 SAFE_CLOSE(fd2); in verify_flock()
|
D | flock03.c | 26 int fd2; in childfunc() local 29 fd2 = SAFE_OPEN("testfile", O_RDWR); in childfunc() 30 if (flock(fd2, LOCK_EX | LOCK_NB) != -1) in childfunc() 42 TEST(flock(fd2, LOCK_EX | LOCK_NB)); in childfunc() 52 SAFE_CLOSE(fd2); in childfunc()
|
D | flock04.c | 48 int fd2; in verify_flock() local 52 fd2 = SAFE_OPEN("testfile", O_RDWR); in verify_flock() 53 TEST(flock(fd2, tc->operation)); in verify_flock() 57 SAFE_CLOSE(fd2); in verify_flock() 75 SAFE_CLOSE(fd2); in verify_flock()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/ |
D | 3-1.c | 51 int fd2; in main() local 69 fd2 = open(tmpfname2, O_CREAT | O_RDWR | O_EXCL, S_IRUSR | S_IWUSR); in main() 70 if (fd == -1 || fd2 == -1) { in main() 87 if (write(fd2, data, total_size) != total_size) { in main() 109 mmap(pa, size2, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_FIXED, fd2, in main() 129 close(fd2); in main()
|
/third_party/ltp/testcases/kernel/io/direct_io/ |
D | diotest1.c | 57 static int fd1, fd2; variable 73 if (fd2 > 0) in cleanup() 74 close(fd2); in cleanup() 130 fd2 = SAFE_OPEN(cleanup, outfile, O_DIRECT | O_RDWR | O_CREAT, 0666); in main() 148 SAFE_LSEEK(cleanup, fd2, offset, SEEK_SET); in main() 150 SAFE_WRITE(cleanup, 1, fd2, buf, n); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/ |
D | 8-1.c | 37 int fd1, fd2; in main() local 46 fd2 = shm_open(SHM_NAME, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR); in main() 47 if (fd2 == -1) { in main() 56 if (fd2 == (fd1 + 1)) { in main()
|
/third_party/ltp/testcases/kernel/syscalls/pwritev/ |
D | pwritev02.c | 39 static int fd2; variable 69 {&fd2, wr_iovec2, 1, 0, EBADF}, 96 fd2 = SAFE_OPEN("file", O_RDONLY | O_CREAT, 0644); in setup() 105 if (fd2 > 0) in cleanup() 106 SAFE_CLOSE(fd2); in cleanup()
|
/third_party/ltp/testcases/kernel/syscalls/pwritev2/ |
D | pwritev202.c | 31 static int fd2; variable 62 {&fd2, wr_iovec2, 1, 0, 0, EBADF}, 90 fd2 = SAFE_OPEN("file2", O_RDONLY | O_CREAT, 0644); in setup() 101 if (fd2 > 0) in cleanup() 102 SAFE_CLOSE(fd2); in cleanup()
|
/third_party/ltp/testcases/kernel/syscalls/dup2/ |
D | dup203.c | 35 int fd2, rval; in run() local 59 fd2 = TST_RET; in run() 64 if (fd1 != fd2) { in run() 70 SAFE_READ(0, fd2, buf, sizeof(buf)); in run() 76 rval = SAFE_FCNTL(fd2, F_GETFD); in run()
|