/third_party/ltp/testcases/kernel/syscalls/memfd_create/ |
D | memfd_create01.c | 23 static void test_basic(int fd) in test_basic() argument 26 CHECK_MFD_HAS_SEALS(fd, 0); in test_basic() 27 CHECK_MFD_ADD_SEALS(fd, F_SEAL_SHRINK | F_SEAL_WRITE); in test_basic() 28 CHECK_MFD_HAS_SEALS(fd, F_SEAL_SHRINK | F_SEAL_WRITE); in test_basic() 31 CHECK_MFD_ADD_SEALS(fd, F_SEAL_SHRINK | F_SEAL_WRITE); in test_basic() 32 CHECK_MFD_HAS_SEALS(fd, F_SEAL_SHRINK | F_SEAL_WRITE); in test_basic() 35 CHECK_MFD_ADD_SEALS(fd, F_SEAL_GROW | F_SEAL_SEAL); in test_basic() 36 CHECK_MFD_HAS_SEALS(fd, F_SEAL_SHRINK | F_SEAL_GROW | in test_basic() 40 CHECK_MFD_FAIL_ADD_SEALS(fd, F_SEAL_GROW); in test_basic() 41 CHECK_MFD_FAIL_ADD_SEALS(fd, 0); in test_basic() [all …]
|
D | memfd_create_common.h | 41 #define CHECK_MMAP(addr, length, prot, flags, fd, offset) \ argument 43 (flags), (fd), (offset)) 45 #define CHECK_MMAP_FAIL(addr, length, prot, flags, fd, offset) \ argument 47 (flags), (fd), (offset)) 52 #define CHECK_MFD_HAS_SEALS(fd, seals) \ argument 53 check_mfd_has_seals(__FILE__, __LINE__, (fd), (seals)); 55 #define CHECK_MFD_ADD_SEALS(fd, seals) \ argument 56 ({int r = SAFE_FCNTL((fd), F_ADD_SEALS, (seals)); \ 58 (fd), (seals)); r; }) 60 #define CHECK_MFD_FAIL_ADD_SEALS(fd, seals) \ argument [all …]
|
D | memfd_create_common.c | 32 int check_fallocate(const char *filename, const int lineno, int fd, in check_fallocate() argument 37 r = fallocate(fd, mode, offset, len); in check_fallocate() 40 "fallocate(%d, %d, %ld, %ld) failed", fd, mode, in check_fallocate() 45 "fallocate(%d, %d, %ld, %ld) succeeded", fd, mode, in check_fallocate() 51 int check_fallocate_fail(const char *filename, const int lineno, int fd, in check_fallocate_fail() argument 56 r = fallocate(fd, mode, offset, len); in check_fallocate_fail() 60 fd, mode, offset, len); in check_fallocate_fail() 66 "fallocate(%d, %d, %ld, %ld) failed as expected", fd, in check_fallocate_fail() 72 void check_ftruncate(const char *filename, const int lineno, int fd, in check_ftruncate() argument 75 safe_ftruncate(filename, lineno, fd, length); in check_ftruncate() [all …]
|
/third_party/ltp/testcases/kernel/security/tomoyo/ |
D | tomoyo_new_file_test.c | 96 int fd; in stage_file_test() local 190 fd = open("/dev/null", O_RDONLY); in stage_file_test() 191 show_result(fd, 1); in stage_file_test() 192 if (fd != EOF) in stage_file_test() 193 close(fd); in stage_file_test() 195 fd = open("/dev/null", O_RDONLY); in stage_file_test() 196 show_result(fd, 0); in stage_file_test() 197 if (fd != EOF) in stage_file_test() 198 close(fd); in stage_file_test() 202 fd = open("/dev/null", O_RDONLY); in stage_file_test() [all …]
|
D | tomoyo_rewrite_test.c | 58 int fd; in stage_rewrite_test() local 77 fd = open(REWRITE_PATH, O_RDONLY); in stage_rewrite_test() 78 show_result(fd); in stage_rewrite_test() 79 close(fd); in stage_rewrite_test() 82 fd = open(REWRITE_PATH, O_WRONLY | O_APPEND); in stage_rewrite_test() 83 show_result(fd); in stage_rewrite_test() 84 close(fd); in stage_rewrite_test() 88 fd = open(REWRITE_PATH, O_WRONLY); in stage_rewrite_test() 89 show_result(fd); in stage_rewrite_test() 90 close(fd); in stage_rewrite_test() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
D | inotify.c | 25 int fd; member 36 static int inotify_add_watch_test(int fd, uint32_t mask) in inotify_add_watch_test() argument 39 return inotify_add_watch(fd, "/data", mask); in inotify_add_watch_test() 42 static int inotify_rm_watch_test(int fd, int wd) in inotify_rm_watch_test() argument 45 return inotify_rm_watch(fd, wd); in inotify_rm_watch_test() 50 int fd = inotify_init_test(); in inotify_test() local 51 EXPECT_NE(msg, fd, ERREXPECT); in inotify_test() 52 if (fd == -1) { in inotify_test() 57 struct inotify_test data[TEST_DATA_COUNT] = {{.fd = fd, .wd = -1, .mask = IN_ACCESS}, in inotify_test() 58 {.fd = fd, .wd = -1, .mask = IN_MODIFY}, in inotify_test() [all …]
|
D | flock.c | 28 int fd = open("/data/test.txt", O_RDWR | O_CREAT, TEST_MODE); in flock_0100() local 29 EXPECT_NE("flock_0100", fd, -1); in flock_0100() 30 lseek(fd, 2, SEEK_SET); in flock_0100() 32 result = flock(fd, LOCK_SH); in flock_0100() 34 close(fd); in flock_0100() 46 int fd = open("/data/test.txt", O_RDWR | O_CREAT, TEST_MODE); in flock_0200() local 47 EXPECT_NE("flock_0200", fd, -1); in flock_0200() 48 lseek(fd, 2, SEEK_SET); in flock_0200() 50 result = flock(fd, LOCK_SH | LOCK_NB); in flock_0200() 52 close(fd); in flock_0200() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/eventfd/ |
D | eventfd01.c | 85 static int clear_counter(int fd) in clear_counter() argument 90 ret = read(fd, &dummy, sizeof(dummy)); in clear_counter() 111 static int set_counter(int fd, uint64_t val) in set_counter() argument 115 ret = clear_counter(fd); in set_counter() 119 ret = write(fd, &val, sizeof(val)); in set_counter() 131 static void read_test(int fd, uint64_t required) in read_test() argument 136 ret = read(fd, &val, sizeof(val)); in read_test() 152 static void read_eagain_test(int fd) in read_eagain_test() argument 157 ret = clear_counter(fd); in read_eagain_test() 163 ret = read(fd, &val, sizeof(val)); in read_eagain_test() [all …]
|
/third_party/ltp/testcases/kernel/input/ |
D | input_helper.c | 40 int ret, fd = -1; in try_open_device() local 46 fd = open(path, O_RDONLY); in try_open_device() 48 if (fd < 0 && errno == ENOENT) in try_open_device() 51 if (fd < 0) { in try_open_device() 56 ret = ioctl(fd, EVIOCGNAME(sizeof(name)), name); in try_open_device() 65 return fd; in try_open_device() 66 close(fd); in try_open_device() 74 int fd; in open_device() local 78 fd = try_open_device(); in open_device() 79 if (fd > 0) in open_device() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/close_range/ |
D | close_range02.c | 23 static int try_close_range(int fd, int flags) in try_close_range() argument 27 TEST(close_range(fd, fd, flags)); in try_close_range() 45 int fd = -1, res; in run() local 49 fd = SAFE_OPEN("/", O_PATH); in run() 50 SAFE_DUP2(fd, 100); in run() 52 TST_EXP_PASS(close_range(fd, 100, 0), in run() 53 "close_range(%d, 100, 0)", fd); in run() 54 TST_EXP_FAIL(fcntl(fd, F_GETFD), EBADF, in run() 55 "fcntl(%d, F_GETFD)", fd); in run() 68 fd = SAFE_OPEN("/", O_PATH); in run() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/fcntl/fcntl_gtest/ |
D | fcntl_fcntl_test.cpp | 24 int fd = open("test_fcntl_001.txt", O_RDONLY | O_CREAT, 0644); variable 25 ASSERT_NE(fd, -1); 26 int fdFlags = fcntl(fd, F_GETFD); 29 close(fd); 41 int fd = open("test_fcntl_002.txt", O_RDONLY | O_CREAT, 0644); variable 42 ASSERT_NE(fd, -1); 43 int newFd = fcntl(fd, F_DUPFD, 0); 45 close(fd); 58 int fd = open("test_fcntl_003.txt", O_RDWR | O_CREAT, 0644); variable 59 ASSERT_NE(fd, -1); [all …]
|
/third_party/mbedtls/library/ |
D | net_sockets.c | 73 #define read(fd, buf, len) recv(fd, (char *) (buf), (int) (len), 0) argument 74 #define write(fd, buf, len) send(fd, (char *) (buf), (int) (len), 0) argument 75 #define close(fd) closesocket(fd) argument 146 static int check_fd(int fd, int for_select) in check_fd() argument 148 if (fd < 0) { in check_fd() 160 if (for_select && fd >= FD_SETSIZE) { in check_fd() 173 ctx->fd = -1; in mbedtls_net_init() 206 ctx->fd = (int) socket(AF_INET, SOCK_STREAM, 0); in mbedtls_net_connect() 208 ctx->fd = (int) socket(cur->ai_family, cur->ai_socktype, in mbedtls_net_connect() 211 if(ctx->fd < 0) in mbedtls_net_connect() [all …]
|
/third_party/ntfs-3g/libntfs-3g/ |
D | win32_io.c | 689 static int ntfs_device_win32_getgeo(HANDLE handle, win32_fd *fd) in ntfs_device_win32_getgeo() argument 705 fd->geo_cylinders = ((DISK_GEOMETRY*)&b)->Cylinders.QuadPart; in ntfs_device_win32_getgeo() 706 fd->geo_sectors = ((DISK_GEOMETRY*)&b)->SectorsPerTrack; in ntfs_device_win32_getgeo() 707 fd->geo_size = ((DISK_GEOMETRY_EX*)&b)->DiskSize.QuadPart; in ntfs_device_win32_getgeo() 708 fd->geo_sector_size = NTFS_BLOCK_SIZE; in ntfs_device_win32_getgeo() 711 fd->geo_cylinders = ddi->Int13.MaxCylinders; in ntfs_device_win32_getgeo() 712 fd->geo_sectors = ddi->Int13.SectorsPerTrack; in ntfs_device_win32_getgeo() 713 fd->geo_heads = ddi->Int13.MaxHeads; in ntfs_device_win32_getgeo() 716 fd->geo_cylinders = ddi->ExInt13.ExCylinders; in ntfs_device_win32_getgeo() 717 fd->geo_sectors = ddi->ExInt13.ExSectorsPerTrack; in ntfs_device_win32_getgeo() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
D | lseek.c | 39 int fd = open("lseek64_function_test.c", O_RDWR | O_CREAT, TEST_MODE); in lseek64_0100() local 40 if (fd < 0) { in lseek64_0100() 45 lseek64(fd, 0, SEEK_SET); in lseek64_0100() 46 offset = lseek64(fd, DataArry[i], SEEK_SET); in lseek64_0100() 51 close(fd); in lseek64_0100() 66 int fd = open("/data/readtest.txt", O_RDWR | O_CREAT, TEST_MODE); in lseek_0100() local 67 EXPECT_STRLT("lseek_0100", 0, fd); in lseek_0100() 68 int retwrite = write(fd, wrstring, sizeof(wrstring)); in lseek_0100() 69 off_t data = lseek(fd, 0L, SEEK_SET); in lseek_0100() 71 close(fd); in lseek_0100() [all …]
|
D | faccessat.c | 35 int fd = open(ptr, O_RDWR | O_CREAT, TEST_MODE); in faccessat_0100() local 36 EXPECT_TRUE("faccessat_0100", fd >= 0); in faccessat_0100() 37 int isExist = faccessat(fd, ptr, F_OK, 0); in faccessat_0100() 39 close(fd); in faccessat_0100() 52 int fd = -1; in faccessat_0200() local 53 int isExist = faccessat(fd, ptr, F_OK, 0); in faccessat_0200() 55 close(fd); in faccessat_0200() 68 int fd = open(ptr, O_RDWR | O_CREAT, 00040); in faccessat_0300() local 69 EXPECT_TRUE("faccessat_0300", fd >= 0); in faccessat_0300() 70 int isRead = faccessat(fd, ptr, R_OK, 0); in faccessat_0300() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/fcntl/ |
D | open.c | 32 int fd = open(path, O_RDONLY + O_CREAT, TEST_MODE); in open_0100() local 33 int len = write(fd, s, sizeof(s)); in open_0100() 34 ssize_t size = read(fd, buffer, sizeof(buffer)); in open_0100() 35 EXPECT_MT("open_0100", fd, 2); in open_0100() 39 close(fd); in open_0100() 50 int fd = open(path, O_RDONLY); in open_0200() local 51 EXPECT_EQ("open_0200", fd, -1); in open_0200() 63 int fd = open(path, O_WRONLY + O_CREAT, TEST_MODE); in open_0300() local 64 ssize_t size = read(fd, buffer, sizeof(buffer)); in open_0300() 65 EXPECT_MT("open_0300", fd, 2); in open_0300() [all …]
|
/third_party/musl/Benchmark/musl/ |
D | libc_fcntl.cpp | 31 int fd = open("/etc/passwd", O_RDONLY, OPEN_MODE); in Bm_function_Fcntl_getfl() local 32 if (fd == -1) { in Bm_function_Fcntl_getfl() 36 int ret = fcntl(fd, F_GETFL); in Bm_function_Fcntl_getfl() 42 close(fd); in Bm_function_Fcntl_getfl() 72 int fd = open("/dev/zero", O_RDWR, OPEN_MODE); in Bm_function_Fcntl_setlkw() local 73 if (fd == -1) { in Bm_function_Fcntl_setlkw() 83 if (fcntl(fd, F_SETLKW, &fdLock) < 0) { in Bm_function_Fcntl_setlkw() 88 int ret = fcntl(fd, F_SETLKW, &fdLock); in Bm_function_Fcntl_setlkw() 94 close(fd); in Bm_function_Fcntl_setlkw() 100 int fd = open("/etc/passwd", O_RDONLY, OPEN_MODE); in Bm_function_Fcntl_dupfd() local [all …]
|
/third_party/libdrm/ |
D | xf86drm.h | 128 int fd; member 133 extern int drmIoctl(int fd, unsigned long request, void *arg); 135 extern drmHashEntry *drmGetEntry(int fd); 522 #define DRM_LIGHT_LOCK(fd,lock,context) \ argument 526 if (__ret) drmGetLock(fd,context,0); \ 531 #define DRM_LIGHT_LOCK_COUNT(fd,lock,context,count) \ argument 535 if (__ret) drmGetLock(fd,context,0); \ 539 #define DRM_LOCK(fd,lock,context,flags) \ argument 541 if (flags) drmGetLock(fd,context,flags); \ 542 else DRM_LIGHT_LOCK(fd,lock,context); \ [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/include/ |
D | mq_send.h | 14 int sync_pipe_create(int fd[]) in sync_pipe_create() argument 16 return pipe (fd); in sync_pipe_create() 19 int sync_pipe_close(int fd[]) in sync_pipe_close() argument 23 if (fd[0] != -1) in sync_pipe_close() 24 r = close (fd[0]); in sync_pipe_close() 25 if (fd[1] != -1) in sync_pipe_close() 26 r |= close (fd[1]); in sync_pipe_close() 30 int sync_pipe_wait(int fd[]) in sync_pipe_wait() argument 35 if (fd[1] != -1) { in sync_pipe_wait() 36 close (fd[1]); in sync_pipe_wait() [all …]
|
/third_party/rust/crates/rustix/src/net/ |
D | sockopt.rs | 11 use backend::fd::AsFd; 34 pub fn get_socket_type<Fd: AsFd>(fd: Fd) -> io::Result<SocketType> { in get_socket_type() 35 backend::net::syscalls::sockopt::get_socket_type(fd.as_fd()) in get_socket_type() 56 pub fn set_socket_reuseaddr<Fd: AsFd>(fd: Fd, value: bool) -> io::Result<()> { in set_socket_reuseaddr() 57 backend::net::syscalls::sockopt::set_socket_reuseaddr(fd.as_fd(), value) in set_socket_reuseaddr() 78 pub fn set_socket_broadcast<Fd: AsFd>(fd: Fd, broadcast: bool) -> io::Result<()> { in set_socket_broadcast() 79 backend::net::syscalls::sockopt::set_socket_broadcast(fd.as_fd(), broadcast) in set_socket_broadcast() 100 pub fn get_socket_broadcast<Fd: AsFd>(fd: Fd) -> io::Result<bool> { in get_socket_broadcast() 101 backend::net::syscalls::sockopt::get_socket_broadcast(fd.as_fd()) in get_socket_broadcast() 122 pub fn set_socket_linger<Fd: AsFd>(fd: Fd, linger: Option<Duration>) -> io::Result<()> { in set_socket_linger() [all …]
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | DescriptorMessageInfoFactory.java | 278 final FieldDescriptor fd = fieldDescriptors.get(i); in convertProto2() local 279 boolean enforceUtf8 = fd.getFile().getOptions().getJavaStringCheckUtf8(); in convertProto2() 281 if (fd.getJavaType() == Descriptors.FieldDescriptor.JavaType.ENUM) { in convertProto2() 286 return fd.getEnumType().findValueByNumber(number) != null; in convertProto2() 290 if (fd.getContainingOneof() != null) { in convertProto2() 292 builder.withField(buildOneofMember(messageType, fd, oneofState, enforceUtf8, enumVerifier)); in convertProto2() 294 Field field = field(messageType, fd); in convertProto2() 295 int number = fd.getNumber(); in convertProto2() 296 FieldType type = getFieldType(fd); in convertProto2() 298 if (fd.isMapField()) { in convertProto2() [all …]
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstpoll.c | 113 gint fd; member 161 static gboolean gst_poll_fd_ctl_read_unlocked (GstPoll * set, GstPollFD * fd, 163 static gboolean gst_poll_add_fd_unlocked (GstPoll * set, GstPollFD * fd); 181 while ((num_written = write (set->control_write_fd.fd, "W", 1)) != 1) { in wake_event() 195 while ((num_read = read (set->control_read_fd.fd, buf, 1)) != 1) { in release_event() 355 find_index (GArray * array, GstPollFD * fd) in find_index() argument 365 if (fd->idx >= 0 && fd->idx < array->len) { in find_index() 367 ifd = &g_array_index (array, struct pollfd, fd->idx); in find_index() 369 ifd = &g_array_index (array, WinsockFd, fd->idx); in find_index() 372 if (ifd->fd == fd->fd) { in find_index() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/temp/ |
D | mkostemp.c | 29 int fd = mkostemp(tmpfile, O_APPEND); in mkostemp_0100() local 30 EXPECT_TRUE("mkostemp_0100", fd != -1); in mkostemp_0100() 31 if (fd != -1) { in mkostemp_0100() 32 int cnt = write(fd, tmpfile, strlen(tmpfile)); in mkostemp_0100() 34 close(fd); in mkostemp_0100() 52 int fd = mkostemp(tmpfile, O_CLOEXEC); in mkostemp_0200() local 53 EXPECT_TRUE("mkostemp_0200", fd != -1); in mkostemp_0200() 54 if (fd != -1) { in mkostemp_0200() 55 int cnt = write(fd, tmpfile, strlen(tmpfile)); in mkostemp_0200() 57 close(fd); in mkostemp_0200() [all …]
|
/third_party/mesa3d/src/intel/tools/ |
D | intel_sanitize_gpu.c | 49 static int (*libc_close)(int fd); 50 static int (*libc_ioctl)(int fd, unsigned long request, void *argp); 51 static int (*libc_fcntl)(int fd, int cmd, int param); 85 bo_size_table(int fd) in bo_size_table() argument 88 (void*)(uintptr_t)fd); in bo_size_table() 93 bo_size(int fd, uint32_t handle) in bo_size() argument 95 struct hash_table *t = bo_size_table(fd); in bo_size() 103 is_drm_fd(int fd) in is_drm_fd() argument 105 return !!bo_size_table(fd); in is_drm_fd() 109 add_drm_fd(int fd) in add_drm_fd() argument [all …]
|
/third_party/ltp/testcases/kernel/syscalls/fsconfig/ |
D | fsconfig02.c | 10 static int fd = -1, temp_fd = -1, invalid_fd = -1; variable 15 int *fd; member 23 {"invalid-cmd", &fd, 100, "rw", NULL, &aux_0, EOPNOTSUPP}, 24 {"set-flag-key", &fd, FSCONFIG_SET_FLAG, NULL, NULL, &aux_0, EINVAL}, 25 {"set-flag-value", &fd, FSCONFIG_SET_FLAG, "rw", "foo", &aux_0, EINVAL}, 26 {"set-flag-aux", &fd, FSCONFIG_SET_FLAG, "rw", NULL, &aux_1, EINVAL}, 27 …{"set-string-key", &fd, FSCONFIG_SET_STRING, NULL, "#grand.central.org:root.cell.", &aux_0, EINVAL… 28 {"set-string-value", &fd, FSCONFIG_SET_STRING, "source", NULL, &aux_0, EINVAL}, 29 …{"set-string-aux", &fd, FSCONFIG_SET_STRING, "source", "#grand.central.org:root.cell.", &aux_1, EI… 30 {"set-binary-key", &fd, FSCONFIG_SET_BINARY, NULL, "foo", &aux_1, EINVAL}, [all …]
|