Home
last modified time | relevance | path

Searched refs:efd (Results 1 – 15 of 15) sorted by relevance

/third_party/pulseaudio/src/pulsecore/
Dfdsem.c51 int efd; member
63 if ((f->efd = eventfd(0, EFD_CLOEXEC)) >= 0) in pa_fdsem_new()
92 f->efd = event_fd; in pa_fdsem_open_shm()
93 pa_make_fd_cloexec(f->efd); in pa_fdsem_open_shm()
110 if ((f->efd = eventfd(0, EFD_CLOEXEC)) < 0) { in pa_fdsem_new_shm()
131 if (f->efd >= 0) in pa_fdsem_free()
132 pa_close(f->efd); in pa_fdsem_free()
150 if (f->efd >= 0) { in flush()
153 if ((r = pa_read(f->efd, &u, sizeof(u), NULL)) != sizeof(u)) { in flush()
193 if (f->efd >= 0) { in pa_fdsem_post()
[all …]
/third_party/ltp/testcases/kernel/syscalls/epoll_pwait/
Depoll_pwait02.c19 static int efd, sfd[2]; variable
24 TEST(do_epoll_pwait(efd, &e, 1, -1, NULL)); in run()
39 efd = epoll_create(1); in setup()
40 if (efd == -1) in setup()
44 if (epoll_ctl(efd, EPOLL_CTL_ADD, sfd[0], &e)) in setup()
51 if (efd > 0) in cleanup()
52 SAFE_CLOSE(efd); in cleanup()
Depoll_pwait04.c19 static int efd, sfd[2]; variable
25 TST_EXP_FAIL(do_epoll_pwait(efd, &e, 1, -1, bad_addr), in run()
35 efd = epoll_create(1); in setup()
36 if (efd == -1) in setup()
40 if (epoll_ctl(efd, EPOLL_CTL_ADD, sfd[0], &e)) in setup()
49 if (efd > 0) in cleanup()
50 SAFE_CLOSE(efd); in cleanup()
Depoll_pwait03.c20 static int efd, sfd[2]; variable
28 TEST(do_epoll_pwait(efd, &e, 1, ms, NULL)); in sample_fn()
47 efd = epoll_create(1); in setup()
48 if (efd == -1) in setup()
52 if (epoll_ctl(efd, EPOLL_CTL_ADD, sfd[0], &e)) in setup()
58 if (efd > 0) in cleanup()
59 SAFE_CLOSE(efd); in cleanup()
Depoll_pwait01.c26 static int efd, sfd[2]; variable
35 TEST(do_epoll_pwait(efd, &e, 1, -1, &signalset)); in verify_sigmask()
48 TST_EXP_FAIL(do_epoll_pwait(efd, &e, 1, -1, NULL), EINTR, in verify_nonsigmask()
99 efd = epoll_create(1); in setup()
100 if (efd == -1) in setup()
104 if (epoll_ctl(efd, EPOLL_CTL_ADD, sfd[0], &e)) in setup()
110 if (efd > 0) in cleanup()
111 SAFE_CLOSE(efd); in cleanup()
Depoll_pwait05.c20 static int efd, sfd[2]; variable
35 TST_EXP_FAIL(epoll_pwait2(efd, &e, 1, &tc[n].ts, NULL), in run_all()
43 efd = epoll_create(1); in setup()
44 if (efd == -1) in setup()
48 if (epoll_ctl(efd, EPOLL_CTL_ADD, sfd[0], &e)) in setup()
55 if (efd > 0) in cleanup()
56 SAFE_CLOSE(efd); in cleanup()
/third_party/glib/gio/
Dgiounix-private.c79 int efd; in _g_fd_is_pollable() local
83 efd = epoll_create (1); in _g_fd_is_pollable()
84 if (efd == -1) in _g_fd_is_pollable()
89 add_succeeded = epoll_ctl (efd, EPOLL_CTL_ADD, fd, &ev) == 0; in _g_fd_is_pollable()
91 close (efd); in _g_fd_is_pollable()
/third_party/grpc/src/core/lib/iomgr/
Dwakeup_fd_eventfd.cc72 const int efd = eventfd(0, 0); in eventfd_check_availability() local
73 const int is_available = efd >= 0; in eventfd_check_availability()
74 if (is_available) close(efd); in eventfd_check_availability()
/third_party/openssl/engines/
De_afalg.c153 &aio->efd, &custom); in afalg_setup_async_event_notification()
159 aio->efd = eventfd(0); in afalg_setup_async_event_notification()
160 if (aio->efd == -1) { in afalg_setup_async_event_notification()
168 aio->efd, custom, in afalg_setup_async_event_notification()
172 close(aio->efd); in afalg_setup_async_event_notification()
176 if (fcntl(aio->efd, F_SETFL, O_NONBLOCK) != 0) { in afalg_setup_async_event_notification()
184 aio->efd = eventfd(0); in afalg_setup_async_event_notification()
185 if (aio->efd == -1) { in afalg_setup_async_event_notification()
210 aio->efd = -1; in afalg_init_aio()
250 cb->aio_resfd = aio->efd; in afalg_fin_cipher_aio()
[all …]
De_afalg.h70 int efd; member
/third_party/gettext/gnulib-local/lib/libxml/
Dnanoftp.c1581 fd_set rfd, efd; in xmlNanoFTPCloseConnection() local
1591 FD_ZERO(&efd); in xmlNanoFTPCloseConnection()
1592 FD_SET(ctxt->controlFd, &efd); in xmlNanoFTPCloseConnection()
1593 res = select(ctxt->controlFd + 1, &rfd, NULL, &efd, &tv); in xmlNanoFTPCloseConnection()
1763 fd_set rfd, efd; in xmlNanoFTPList() local
1806 FD_ZERO(&efd); in xmlNanoFTPList()
1807 FD_SET(ctxt->dataFd, &efd); in xmlNanoFTPList()
1808 res = select(ctxt->dataFd + 1, &rfd, NULL, &efd, &tv); in xmlNanoFTPList()
/third_party/libxml2/
Dnanoftp.c1549 fd_set rfd, efd; in xmlNanoFTPCloseConnection() local
1559 FD_ZERO(&efd); in xmlNanoFTPCloseConnection()
1560 FD_SET(ctxt->controlFd, &efd); in xmlNanoFTPCloseConnection()
1561 res = select(ctxt->controlFd + 1, &rfd, NULL, &efd, &tv); in xmlNanoFTPCloseConnection()
1731 fd_set rfd, efd; in xmlNanoFTPList() local
1774 FD_ZERO(&efd); in xmlNanoFTPList()
1775 FD_SET(ctxt->dataFd, &efd); in xmlNanoFTPList()
1776 res = select(ctxt->dataFd + 1, &rfd, NULL, &efd, &tv); in xmlNanoFTPList()
/third_party/node/doc/api/
Dinspector.md64 Debugger listening on ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a
66 ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a
/third_party/mesa3d/src/freedreno/.gitlab-ci/reference/
Des2gears-a320.log1771 11842e84: 0000: 0000057f 00002efd
1783 !+ 00002efd CP_SCRATCH_REG7: 12029
/third_party/openh264/res/
DCisco_Absolute_Power_1280x720_30fps.yuv3097 …YXWXYWXUWYXXXUVWWTUVWSTXWTUVVUUTUSVWUWZVUX[\^ekoqsrppponkmnpsw���of_ZV[a``efd\QJXkngWLMQ\defdaabd…