Searched refs:fds (Results 1 – 8 of 8) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/ |
A D | poll.c | 27 static _syscall3(int, __NC(poll), struct pollfd *, fds, 49 int __NC(poll)(struct pollfd *fds, nfds_t nfds, int timeout) 73 for (f = fds; f < &fds[nfds]; ++f) 146 for (f = fds; f < &fds[nfds]; ++f) 191 for (f = fds; f < &fds[nfds]; ++f) 208 CANCELLABLE_SYSCALL(int, poll, (struct pollfd *fds, nfds_t nfds, int timeout), 209 (fds, nfds, timeout))
|
A D | ppoll.c | 30 __NC(ppoll)(struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, in __NC() 40 return INLINE_SYSCALL(ppoll, 5, fds, nfds, timeout, sigmask, __SYSCALL_SIGSET_T_SIZE); in __NC() 43 CANCELLABLE_SYSCALL(int, ppoll, (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, 45 (fds, nfds, timeout, sigmask))
|
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/ |
A D | tst-fini1mod.c | 28 int fds[2]; in tf() local 29 if (pipe (fds) != 0) in tf() 36 read (fds[0], buf, sizeof (buf)); in tf()
|
A D | tst-cleanup4.c | 31 static int fds[2]; variable 63 read (fds[0], &c, 1); in fn_read() 130 if (pipe (fds) != 0) in do_test()
|
A D | tst-cancel4.c | 68 static int fds[2]; variable 106 fd = fds[0]; in tf_read() 151 fd = fds[0]; in tf_readv() 197 fd = fds[1]; in tf_write() 243 fd = fds[1]; in tf_writev() 387 fd = fds[0]; in tf_select() 436 fd = fds[0]; in tf_pselect() 485 fd = fds[0]; in tf_poll() 532 fd = fds[0]; in tf_ppoll() 2158 if (socketpair (AF_UNIX, SOCK_STREAM, PF_UNIX, fds) != 0) in do_test() [all …]
|
/l4re-core-master/l4re_vfs/include/impl/ |
A D | vfs_impl.h | 158 Fd_store fds; variable 318 int fd = fds.alloc(); in alloc_fd() 323 fds.set(fd, f); in alloc_fd() 331 Ref_ptr<L4Re::Vfs::File> f = fds.get(fd); in free_fd() 336 fds.free(fd); in free_fd() 364 return fds.get(fd); in get_file() 370 if (!fds.check_fd(fd)) in set_fd() 373 Ref_ptr<L4Re::Vfs::File> old = fds.get(fd); in set_fd() 374 fds.set(fd, f); in set_fd() 574 if (!fds.is_valid()) in mmap2() [all …]
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/ |
A D | resolv.c | 1246 fd_set fds; in __dns_lookup() local 1248 struct pollfd fds; in __dns_lookup() local 1391 FD_ZERO(&fds); in __dns_lookup() 1392 FD_SET(fd, &fds); in __dns_lookup() 1395 if (select(fd + 1, &fds, NULL, NULL, &tv) <= 0) { in __dns_lookup() 1405 fds.fd = fd; in __dns_lookup() 1406 fds.events = POLLIN; in __dns_lookup() 1407 if (poll(&fds, 1, reply_timeout) <= 0) { in __dns_lookup()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/ |
A D | ChangeLog | 6651 Write fpathconf (fds[1], _PC_PIPE_BUF) + 2 bytes using aio_write,
|
Completed in 25 milliseconds