Home
last modified time | relevance | path

Searched refs:fd2 (Results 1 – 25 of 108) sorted by relevance

12345

/third_party/ltp/testcases/kernel/syscalls/eventfd2/
Deventfd2_03.c80 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/
Dmemfd_create01.c130 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/
Dkcmp02.c26 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 …]
Dkcmp01.c24 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/libevdev/test/
Dtest-uinput.c101 int fd, fd2; in START_TEST() local
126 fd2 = open(devnode, O_RDONLY); in START_TEST()
127 ck_assert_int_gt(fd2, -1); in START_TEST()
128 rc = libevdev_new_from_fd(fd2, &dev2); in START_TEST()
146 close(fd2); in START_TEST()
156 int fd, fd2; in START_TEST() local
169 fd2 = open(UINPUT_NODE, O_RDWR); in START_TEST()
170 ck_assert_int_gt(fd2, -1); in START_TEST()
177 rc = libevdev_uinput_create_from_device(dev, fd2, &uidev2); in START_TEST()
194 close(fd2); in START_TEST()
[all …]
/third_party/libdrm/
Dlibsync.h51 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/
Ddup2.c20 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/
Dfs_dupfd2.c80 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/
Dlibsync.h80 int32_t fd2;
132 static inline int sync_merge(const char *name, int fd1, int fd2)
137 data.fd2 = fd2;
179 static inline int sync_accumulate(const char *name, int *fd1, int fd2) in sync_accumulate() argument
183 assert(fd2 >= 0); in sync_accumulate()
186 *fd1 = dup(fd2); in sync_accumulate()
190 ret = sync_merge(name, *fd1, fd2); in sync_accumulate()
/third_party/ltp/testcases/kernel/syscalls/fcntl/
Dfcntl01.c48 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()
Dfcntl32.c36 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/libdrm/tests/nouveau/
Dthreaded.c78 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/musl/src/stat/
Dfchmodat.c15 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/
Dinput02.c39 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()
Dinput04.c37 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/ltp/testcases/kernel/syscalls/lseek/
Dlseek07.c24 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/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/
D3-1.c51 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/musl/libc-test/src/functionalext/supplement/unistd/
Dlinkat.c31 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/
Dflock06.c24 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()
Dflock03.c26 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()
Dflock04.c48 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/kernel/io/direct_io/
Ddiotest1.c57 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/kernel/syscalls/pwritev/
Dpwritev02.c39 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/
Dpwritev202.c31 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/
Ddup203.c35 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()

12345